]> git.lizzy.rs Git - rust.git/blob - tests/ui/attributes/unix_sigpipe/unix_sigpipe-struct.rs
Add regression test for #42114
[rust.git] / tests / ui / attributes / unix_sigpipe / unix_sigpipe-struct.rs
1 #![feature(unix_sigpipe)]
2
3 #[unix_sigpipe = "inherit"] //~ error: `unix_sigpipe` attribute can only be used on `fn main()`
4 struct S;
5
6 fn main() {}