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 34d175a commit 87c1bbaCopy full SHA for 87c1bba
tests/run-pass/fs.rs
@@ -18,7 +18,9 @@ fn test_metadata(bytes: &[u8], path: &Path) -> Result<()> {
18
19
// FIXME: Implement stat64 for macos.
20
#[cfg(not(target_os = "linux"))]
21
-fn test_metadata(_bytes: &[u8], _path: &Path) {}
+fn test_metadata(_bytes: &[u8], _path: &Path) -> Result<()> {
22
+ Ok(())
23
+}
24
25
fn main() {
26
let tmp = std::env::temp_dir();
0 commit comments