]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/invalid-inline-const-in-match-arm.stderr
Rollup merge of #105843 - compiler-errors:sugg-const, r=lcnr
[rust.git] / src / test / ui / consts / invalid-inline-const-in-match-arm.stderr
1 error[E0015]: cannot call non-const closure in constants
2   --> $DIR/invalid-inline-const-in-match-arm.rs:6:17
3    |
4 LL |         const { (|| {})() } => {}
5    |                 ^^^^^^^^^
6    |
7    = note: closures need an RFC before allowed to be called in constants
8    = note: calls in constants are limited to constant functions, tuple structs and tuple variants
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0015`.