rust/src/test/compile-fail/liveness-uninit-after-item.rs

7 lines
122 B
Rust
Raw Normal View History

fn main() {
let bar;
fn baz(_x: int) { }
2012-06-19 21:34:01 -05:00
baz(bar); //! ERROR use of possibly uninitialized variable: `bar`
}