about summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/double_check2.stderr
AgeCommit message (Collapse)AuthorLines
2020-09-19Validate constants during `const_eval_raw`Oliver Scherer-22/+0
2020-07-11Stabilize `transmute` in constants and statics but not const fnOliver Scherer-1/+9
2020-07-05catch errors more locally around read_discriminantRalf Jung-1/+1
2020-05-30miri errors: rename InvalidDiscriminant -> InvalidTagRalf Jung-1/+1
2020-04-26organize Debug/Display impls a bit more; avoid sign-ignorant decimal displayRalf Jung-1/+1
2019-09-06Fixed grammar/style in error messages and reblessed tests.Alexander Regueiro-1/+1
2019-08-30const-eval tests: make all unions repr(C)Ralf Jung-1/+1
2019-03-11Update testsVadim Petrochenkov-1/+1
2018-12-25Remove licensesMark Rousskov-1/+1
2018-11-05fix validation error on non-integer enum discriminantsRalf Jung-1/+1
2018-11-01Fix double_check tests on big-endian targetsSamuel Holland-2/+2
Since the enums get optimized down to 1 byte long, the bits set in the usize member don't align with the enums on big-endian machines. Avoid this issue by shrinking the integer member to the same size as the enums.
2018-10-25Report const eval error inside the queryOliver Schneider-1/+1
2018-08-28address nitsRalf Jung-1/+1
2018-08-27validate enum discriminant whenever it is readRalf Jung-1/+1
2018-08-22optimize sanity check path printingRalf Jung-1/+1
During the sanity check, we keep track of the path we are below in a `Vec`. We avoid cloning that `Vec` unless we hit a pointer indirection. The `String` representation is only computed when validation actually fails.
2018-08-14Merged migrated compile-fail tests and ui tests. Fixes #46841.David Wood-0/+14