blob: f5911d78fd920852ac2866501510a035edde2c73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ only-windows
// Reason: dos devices are a Windows thing
use run_make_support::{path, rustc, static_lib_name};
fn main() {
rustc().input(r"\\.\NUL").crate_type("staticlib").run();
rustc().input(r"\\?\NUL").crate_type("staticlib").run();
assert!(path(&static_lib_name("rust_out")).exists());
}
|