mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-18 14:19:41 +00:00
To make sure that
#[unix_sigpipe = "x"]
#[unix_sigpipe = "y"]
behaves like
#[unix_sigpipe = "x"]
#[unix_sigpipe = "x"]
15 lines
379 B
Plaintext
15 lines
379 B
Plaintext
error: multiple `unix_sigpipe` attributes
|
|
--> $DIR/unix_sigpipe-duplicates.rs:4:1
|
|
|
|
|
LL | #[unix_sigpipe = "inherit"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
|
|
|
|
|
note: attribute also specified here
|
|
--> $DIR/unix_sigpipe-duplicates.rs:3:1
|
|
|
|
|
LL | #[unix_sigpipe = "inherit"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|