1576a6d618
update tests fix bitwidth-sensitive stderr output use build-fail for asm tests
55 lines
2.3 KiB
Plaintext
55 lines
2.3 KiB
Plaintext
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/const_refs_to_static_fail_invalid.rs:8:5
|
|
|
|
|
LL | const C: &bool = unsafe { std::mem::transmute(&S) };
|
|
| ^^^^^^^^^^^^^^ constructing invalid value at .<deref>: encountered 0x0a, but expected a boolean
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/const_refs_to_static_fail_invalid.rs:24:5
|
|
|
|
|
LL | const C: &i8 = unsafe { &S };
|
|
| ^^^^^^^^^^^^ constructing invalid value: encountered reference to `extern` static in `const`
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/const_refs_to_static_fail_invalid.rs:38:5
|
|
|
|
|
LL | const C: &i32 = unsafe { &S_MUT };
|
|
| ^^^^^^^^^^^^^ constructing invalid value: encountered reference to mutable memory in `const`
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error: could not evaluate constant pattern
|
|
--> $DIR/const_refs_to_static_fail_invalid.rs:14:9
|
|
|
|
|
LL | C => {}
|
|
| ^
|
|
|
|
error: could not evaluate constant pattern
|
|
--> $DIR/const_refs_to_static_fail_invalid.rs:30:9
|
|
|
|
|
LL | C => {}
|
|
| ^
|
|
|
|
error: could not evaluate constant pattern
|
|
--> $DIR/const_refs_to_static_fail_invalid.rs:45:9
|
|
|
|
|
LL | C => {}
|
|
| ^
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|