6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
7 lines
146 B
Rust
7 lines
146 B
Rust
fn main() {
|
|
let i: int;
|
|
|
|
log(debug, false && { i = 5; true });
|
|
log(debug, i); //~ ERROR use of possibly uninitialized variable: `i`
|
|
}
|