about summary refs log tree commit diff
path: root/tests/ui/attributes/unix_sigpipe/unix_sigpipe-struct.rs
blob: 662779c0821773d4d1e00a781449028ce1635206 (plain)
1
2
3
4
5
6
#![feature(unix_sigpipe)]

#[unix_sigpipe = "sig_dfl"] //~ error: `unix_sigpipe` attribute can only be used on `fn main()`
struct S;

fn main() {}