Files
rust/tests/ui/attributes/unix_sigpipe/unix_sigpipe-different-duplicates.rs

6 lines
142 B
Rust
Raw Normal View History

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