mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00
10 lines
190 B
Rust
10 lines
190 B
Rust
![]() |
// Checks that lint attributes work on non-item AST nodes
|
||
|
|
||
|
fn main() {
|
||
|
#[deny(unreachable_code)]
|
||
|
loop {
|
||
|
break;
|
||
|
"unreachable"; //~ ERROR unreachable statement
|
||
|
}
|
||
|
}
|