diff --git a/tests/filesystem_mode_test.rs b/tests/filesystem_mode_test.rs index 73db6cc6..e7c78fc7 100644 --- a/tests/filesystem_mode_test.rs +++ b/tests/filesystem_mode_test.rs @@ -9,6 +9,9 @@ // unsupported error — never a silent no-op, which is the failure mode the issue // complains about. +// `Value` is only referenced from the `unix` module below; on Windows the import +// would be dead and `-D warnings` rejects it. +#[cfg(unix)] use wfl::interpreter::value::Value; mod common;