
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
15 lines
153 B
Rust
15 lines
153 B
Rust
//@ run-pass
|
|
|
|
#![allow(unreachable_code)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
fn test() {
|
|
let _v: isize;
|
|
_v = 1;
|
|
return;
|
|
_v = 2;
|
|
}
|
|
|
|
pub fn main() {
|
|
}
|