]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/control-flow/issue-46843.stderr
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / src / test / ui / consts / control-flow / issue-46843.stderr
1 error[E0015]: cannot call non-const fn `non_const` in constants
2   --> $DIR/issue-46843.rs:10:26
3    |
4 LL | pub const Q: i32 = match non_const() {
5    |                          ^^^^^^^^^^^
6    |
7    = note: calls in constants 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`.