6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
9 lines
123 B
Rust
9 lines
123 B
Rust
fn test() {
|
|
let v: int;
|
|
v += 1; //~ ERROR use of possibly uninitialized variable: `v`
|
|
copy v;
|
|
}
|
|
|
|
fn main() {
|
|
}
|