10 lines
114 B
Rust
10 lines
114 B
Rust
|
fn test() {
|
||
|
let _v: int;
|
||
|
_v = 1;
|
||
|
ret;
|
||
|
_v = 2; //! WARNING: unreachable statement
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
}
|