]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-extern-fn/const-extern-fn-call-extern-fn.stderr
Fix font color for help button in ayu and dark themes
[rust.git] / src / test / ui / consts / const-extern-fn / const-extern-fn-call-extern-fn.stderr
1 error[E0723]: can only call other `const fn` within a `const fn`, but `const regular_in_block` is not stable as `const fn`
2   --> $DIR/const-extern-fn-call-extern-fn.rs:9:9
3    |
4 LL |         regular_in_block();
5    |         ^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
8    = help: add `#![feature(const_fn)]` to the crate attributes to enable
9
10 error[E0723]: can only call other `const fn` within a `const fn`, but `const regular` is not stable as `const fn`
11   --> $DIR/const-extern-fn-call-extern-fn.rs:18:9
12    |
13 LL |         regular();
14    |         ^^^^^^^^^
15    |
16    = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
17    = help: add `#![feature(const_fn)]` to the crate attributes to enable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0723`.