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

7 lines
127 B
Rust
Raw Normal View History

fn main() {
let bar;
fn baz(_x: int) { }
bind baz(bar); //! ERROR use of possibly uninitialized variable: `bar`
}