2020-08-20 09:44:20 +00:00
|
|
|
error[E0723]: can only call other `const fn` within a `const fn`, but `non_const` is not stable as `const fn`
|
2020-02-04 14:03:37 -08:00
|
|
|
--> $DIR/const-check-fns-in-const-impl.rs:12:16
|
|
|
|
|
|
|
|
|
LL | fn foo() { non_const() }
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2020-02-18 15:45:54 -08:00
|
|
|
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
|
2020-02-04 14:03:37 -08:00
|
|
|
= 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`.
|