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

6 lines
142 B
Rust

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