rust/src/test/ui/issues/issue-37550.stderr

13 lines
404 B
Plaintext
Raw Normal View History

error[E0723]: function pointers in const fn are unstable
--> $DIR/issue-37550.rs:3:9
2018-07-15 14:11:54 -07:00
|
2019-03-09 15:03:44 +03:00
LL | let x = || t;
2018-11-22 15:44:25 +01:00
| ^
2019-02-05 21:27:44 +01:00
|
= note: for more information, see issue https://github.com/rust-lang/rust/issues/57563
2019-02-05 21:27:44 +01:00
= help: add #![feature(const_fn)] to the crate attributes to enable
2018-07-15 14:11:54 -07:00
2018-11-22 15:44:25 +01:00
error: aborting due to previous error
2018-07-15 14:11:54 -07:00
2019-02-05 21:27:44 +01:00
For more information about this error, try `rustc --explain E0723`.