7 lines
105 B
Rust
7 lines
105 B
Rust
const fn x() {
|
|
let t = true; //~ ERROR local variables in const fn
|
|
let x = || t;
|
|
}
|
|
|
|
fn main() {}
|