427952e808
This change makes error and warning annotations mandatory in UI tests. The only exception are tests that use error patterns to match compiler output and don't have any annotations.
9 lines
175 B
Rust
9 lines
175 B
Rust
// run-pass
|
|
|
|
#![allow(unused_parens)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn foo() { if (return) { } } //~ WARNING unreachable block in `if` expression
|
|
|
|
pub fn main() { foo(); }
|