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

#[start]
#[unix_sigpipe = "sig_dfl"] //~ error: `unix_sigpipe` attribute can only be used on `fn main()`
fn custom_start(argc: isize, argv: *const *const u8) -> isize { 0 }