mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
291 B
Rust
11 lines
291 B
Rust
// When denying at the crate level, be sure to not get random warnings from the
|
|
// injected intrinsics by the compiler.
|
|
|
|
#![deny(unused_attributes)]
|
|
|
|
mod a {
|
|
#![crate_type = "bin"] //~ ERROR should be in the root module
|
|
}
|
|
|
|
#[crate_type = "bin"] fn main() {} //~ ERROR should be an inner
|