948b1d68ab
To make sure that #[unix_sigpipe = "x"] #[unix_sigpipe = "y"] behaves like #[unix_sigpipe = "x"] #[unix_sigpipe = "x"]
6 lines
142 B
Rust
6 lines
142 B
Rust
#![feature(unix_sigpipe)]
|
|
|
|
#[unix_sigpipe = "sig_ign"]
|
|
#[unix_sigpipe = "inherit"] //~ error: multiple `unix_sigpipe` attributes
|
|
fn main() {}
|