mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-06 18:04:49 +00:00
9 lines
173 B
Rust
9 lines
173 B
Rust
#![feature(unix_sigpipe)]
|
|
|
|
mod m {
|
|
#[unix_sigpipe = "inherit"] //~ error: `unix_sigpipe` attribute can only be used on root `fn main()`
|
|
fn main() {}
|
|
}
|
|
|
|
fn main() {}
|