mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
16 lines
153 B
Rust
16 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() {
|
|
}
|