6 lines
120 B
Rust
6 lines
120 B
Rust
const fn x() {
|
|
let t = true;
|
|
let x = || t; //~ ERROR function pointers in const fn are unstable
|
|
}
|
|
|
|
fn main() {}
|