rust/tests/ui/attributes/unix_sigpipe/unix_sigpipe-wrong.rs
2023-01-11 09:32:08 +00: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() {}