blob: 35da6258016178a8e153a647a109346da42f80b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0723]: function pointers in const fn are unstable
--> $DIR/issue-37550.rs:3:9
|
LL | let x = || t;
| ^
|
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
= help: add `#![feature(const_fn)]` to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0723`.
|