mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-18 19:08:22 +00:00
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 = "inherit"]
|
|
#[unix_sigpipe = "inherit"] //~ error: multiple `unix_sigpipe` attributes
|
|
fn main() {}
|