mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +00:00
10 lines
158 B
Rust
10 lines
158 B
Rust
//@ compile-flags: -Zvalidate-mir
|
|
|
|
fn _test() {
|
|
let x = || 45;
|
|
missing();
|
|
//~^ ERROR cannot find function `missing` in this scope
|
|
}
|
|
|
|
fn main() {}
|