rust/tests/ui/consts/const-err-enum-discriminant.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
377 B
Plaintext
Raw Normal View History

error[E0080]: evaluation of constant value failed
--> $DIR/const-err-enum-discriminant.rs:8:21
2021-03-31 09:33:45 +00:00
|
LL | Boo = [unsafe { Foo { b: () }.a }; 4][3],
| ^^^^^^^^^^^^^^^ using uninitialized data, but this operation requires initialized memory
2021-03-31 09:33:45 +00:00
2023-11-21 19:26:31 +00:00
error: aborting due to 1 previous error
2021-03-31 09:33:45 +00:00
For more information about this error, try `rustc --explain E0080`.