6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
7 lines
122 B
Rust
7 lines
122 B
Rust
fn main() {
|
|
let bar;
|
|
fn baz(_x: int) { }
|
|
baz(bar); //~ ERROR use of possibly uninitialized variable: `bar`
|
|
}
|
|
|