mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
aea60b0cc7
The `sig_dfl` variant of the attribute is the most likely variant to be stabilized first, and thus to become the "most allowed" variant of the attribute. Because of this, it is the most appropriate variant to use in syntax tests, because even if the most allowed variant is used, the compiler shall still emit errors if it e.g. is used in the wrong places.
9 lines
220 B
Plaintext
9 lines
220 B
Plaintext
error: `unix_sigpipe` attribute can only be used on `fn main()`
|
|
--> $DIR/unix_sigpipe-non-main-fn.rs:3:1
|
|
|
|
|
LL | #[unix_sigpipe = "sig_dfl"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|