rust/src/test/ui/issues/issue-46843.stderr

23 lines
718 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
2018-12-25 09:56:47 -06:00
--> $DIR/issue-46843.rs:7:26
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub const Q: i32 = match non_const() {
2018-07-15 16:11:54 -05:00
| ^^^^^^^^^^^
error[E0019]: constant contains unimplemented expression type
--> $DIR/issue-46843.rs:7:26
|
LL | pub const Q: i32 = match non_const() {
| ^^^^^^^^^^^
error[E0019]: constant contains unimplemented expression type
--> $DIR/issue-46843.rs:10:5
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Thing::This => 1,
2018-07-15 16:11:54 -05:00
| ^^^^^^^^^^^
error: aborting due to 3 previous errors
2018-07-15 16:11:54 -05:00
Some errors have detailed explanations: E0015, E0019.
2018-07-15 16:11:54 -05:00
For more information about an error, try `rustc --explain E0015`.