]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/lint-attr-non-item-node.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / lint / lint-attr-non-item-node.rs
CommitLineData
32a655c1 1// Checks that lint attributes work on non-item AST nodes
a7813a04
XL
2
3fn main() {
32a655c1
SL
4 #[deny(unreachable_code)]
5 loop {
6 break;
7 "unreachable"; //~ ERROR unreachable statement
8 }
54a0048b 9}