2022-07-05 19:56:22 +02:00
|
|
|
error: `unix_sigpipe` attribute cannot be used at crate level
|
|
|
|
--> $DIR/unix_sigpipe-crate.rs:2:1
|
|
|
|
|
|
|
|
|
LL | #![unix_sigpipe = "inherit"]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-10-18 00:24:21 +00:00
|
|
|
LL |
|
|
|
|
LL | fn main() {}
|
|
|
|
| ---- the inner attribute doesn't annotate this function
|
2022-07-05 19:56:22 +02:00
|
|
|
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
|
2023-10-18 00:24:21 +00:00
|
|
|
LL - #![unix_sigpipe = "inherit"]
|
|
|
|
LL + #[unix_sigpipe = "inherit"]
|
|
|
|
|
|
2022-07-05 19:56:22 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|