We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b9eab commit 06a14f1Copy full SHA for 06a14f1
src/tools/miri/tests/pass-dep/libc/libc-fs-symlink.rs
@@ -66,6 +66,6 @@ fn test_nofollow_symlink() {
66
67
let ret = unsafe { libc::open(symlink_cpath.as_ptr(), libc::O_NOFOLLOW | libc::O_CLOEXEC) };
68
assert_eq!(ret, -1);
69
- let err = io::Error::last_os_error().raw_os_error().unwrap();
+ let err = Error::last_os_error().raw_os_error().unwrap();
70
assert_eq!(err, libc::ELOOP);
71
}
0 commit comments