Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
attributes
/
unix_sigpipe
/
unix_sigpipe-start.rs
blob: 64fd5ec4f0ed86564e8f1f74ccba84a432f9a111 [
file
] [
log
] [
blame
]
#![
feature
(
start
)]
#![
feature
(
unix_sigpipe
)]
#[
start
]
#[
unix_sigpipe
=
"inherit"
]
//~ error: `unix_sigpipe` attribute can only be used on `fn main()`
fn
custom_start
(
argc
:
isize
,
argv
:
*
const
*
const
u8
)
->
isize
{
0
}