]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2632-const-trait-impl/const-check-fns-in-const-impl.stderr
Auto merge of #105712 - amg98:feat/vita-support, r=wesleywiser
[rust.git] / src / test / ui / rfc-2632-const-trait-impl / const-check-fns-in-const-impl.stderr
1 error[E0015]: cannot call non-const fn `non_const` in constant functions
2   --> $DIR/const-check-fns-in-const-impl.rs:12:16
3    |
4 LL |     fn foo() { non_const() }
5    |                ^^^^^^^^^^^
6    |
7    = note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0015`.