6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
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() {
|
|
}
|