about summary refs log tree commit diff
path: root/tests/ui/mir/validate/error-body.rs
blob: e77867ddfd421974ff6046ad723c915abe546004 (plain)
1
2
3
4
5
6
7
8
9
//@ compile-flags: -Zvalidate-mir

fn _test() {
    let x = || 45;
    missing();
    //~^ ERROR cannot find function `missing` in this scope
}

fn main() {}