6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
7 lines
123 B
Rust
7 lines
123 B
Rust
fn main() {
|
|
let mut x = 3;
|
|
let y;
|
|
x <-> y; //~ ERROR use of possibly uninitialized variable: `y`
|
|
copy x;
|
|
}
|