rustc/tests/ui/attributes/unix_sigpipe/unix_sigpipe-wrong.rs
2023-08-02 10:33:26 +02:00

5 lines
159 B
Rust

#![feature(unix_sigpipe)]
#[unix_sigpipe = "wrong"] //~ error: valid values for `#[unix_sigpipe = "..."]` are `inherit`, `sig_ign`, or `sig_dfl`
fn main() {}