6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
8 lines
146 B
Rust
8 lines
146 B
Rust
fn main() {
|
|
let j = fn@() -> int {
|
|
let i: int;
|
|
ret i; //~ ERROR use of possibly uninitialized variable: `i`
|
|
};
|
|
j();
|
|
}
|