9 lines
83 B
Rust
9 lines
83 B
Rust
//@ check-pass
|
|
|
|
const fn x() {
|
|
let t = true;
|
|
let x = || t;
|
|
}
|
|
|
|
fn main() {}
|