rust/tests/ui/attributes/unix_sigpipe/unix_sigpipe-duplicates.rs
2023-01-11 09:32:08 +00:00

6 lines
142 B
Rust

#![feature(unix_sigpipe)]
#[unix_sigpipe = "sig_ign"]
#[unix_sigpipe = "inherit"] //~ error: multiple `unix_sigpipe` attributes
fn main() {}