mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 04:22:36 +00:00
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() {
|
|
}
|