summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-init-in-called-fn-expr.rs
blob: 5716a380936e1de3b88a344fefa3346d312a175f (plain)
1
2
3
4
5
6
7
fn main() {
    let j = fn@() -> int {
        let i: int;
        ret i; //~ ERROR use of possibly uninitialized variable: `i`
    };
    j();
}