blob: 3f05e83a77d1b24f37fc8c0f82f493b90234bba0 [file] [log] [blame]
// Checks that lint attributes work on non-item AST nodes
fn main() {
#[deny(unreachable_code)]
loop {
break;
"unreachable"; //~ ERROR unreachable statement
}
}