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