about summary refs log tree commit diff
path: root/tests/ui/attributes/unix_sigpipe/unix_sigpipe-non-main-fn.rs
blob: 16731a4ba2c6e95285956ef9d311494fe20ec536 (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()`
fn f() {}

fn main() {}