rust/tests/ui/windows-subsystem-invalid.rs
2024-02-16 20:02:50 +00:00

6 lines
142 B
Rust

//@ error-pattern: invalid windows subsystem `wrong`, only `windows` and `console` are allowed
#![windows_subsystem = "wrong"]
fn main() {}