mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 07:16:23 +00:00
10 lines
227 B
Rust
10 lines
227 B
Rust
//@ only-windows
|
|
// Reason: dos devices are a Windows thing
|
|
|
|
use run_make_support::rustc;
|
|
|
|
fn main() {
|
|
rustc().input(r"\\.\NUL").crate_type("staticlib").run();
|
|
rustc().input(r"\\?\NUL").crate_type("staticlib").run();
|
|
}
|