]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/lint-misplaced-attr.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / lint / lint-misplaced-attr.rs
1 // When denying at the crate level, be sure to not get random warnings from the
2 // injected intrinsics by the compiler.
3
4 #![deny(unused_attributes)]
5
6 mod a {
7 #![crate_type = "bin"] //~ ERROR should be in the root module
8 }
9
10 #[crate_type = "bin"] fn main() {} //~ ERROR should be an inner