aea60b0cc7
The `sig_dfl` variant of the attribute is the most likely variant to be stabilized first, and thus to become the "most allowed" variant of the attribute. Because of this, it is the most appropriate variant to use in syntax tests, because even if the most allowed variant is used, the compiler shall still emit errors if it e.g. is used in the wrong places.
7 lines
219 B
Rust
7 lines
219 B
Rust
#![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 }
|