summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/miri_unleashed/const_refers_to_static_cross_crate.64bit.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/miri_unleashed/const_refers_to_static_cross_crate.64bit.stderr')
-rw-r--r--src/test/ui/consts/miri_unleashed/const_refers_to_static_cross_crate.64bit.stderr192
1 files changed, 192 insertions, 0 deletions
diff --git a/src/test/ui/consts/miri_unleashed/const_refers_to_static_cross_crate.64bit.stderr b/src/test/ui/consts/miri_unleashed/const_refers_to_static_cross_crate.64bit.stderr
new file mode 100644
index 000000000..dfa0f76ba
--- /dev/null
+++ b/src/test/ui/consts/miri_unleashed/const_refers_to_static_cross_crate.64bit.stderr
@@ -0,0 +1,192 @@
+error[E0080]: it is undefined behavior to use this value
+ --> $DIR/const_refers_to_static_cross_crate.rs:12:1
+ |
+LL | const SLICE_MUT: &[u8; 1] = {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a reference pointing to a static variable
+ |
+ = 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: 8, align: 8) {
+ ╾───────alloc1────────╼ │ ╾──────╼
+ }
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:40:9
+ |
+LL | SLICE_MUT => true,
+ | ^^^^^^^^^
+
+error[E0080]: it is undefined behavior to use this value
+ --> $DIR/const_refers_to_static_cross_crate.rs:17:1
+ |
+LL | const U8_MUT: &u8 = {
+ | ^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a reference pointing to a static variable
+ |
+ = 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: 8, align: 8) {
+ ╾───────alloc1────────╼ │ ╾──────╼
+ }
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:49:9
+ |
+LL | U8_MUT => true,
+ | ^^^^^^
+
+warning: any use of this value will cause an error
+ --> $DIR/const_refers_to_static_cross_crate.rs:25:15
+ |
+LL | const U8_MUT2: &u8 = {
+ | ------------------
+LL | unsafe { &(*static_cross_crate::ZERO_REF)[0] }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constant accesses static
+ |
+note: the lint level is defined here
+ --> $DIR/const_refers_to_static_cross_crate.rs:23:8
+ |
+LL | #[warn(const_err)]
+ | ^^^^^^^^^
+ = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
+ = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:60:9
+ |
+LL | U8_MUT2 => true,
+ | ^^^^^^^
+
+warning: any use of this value will cause an error
+ --> $DIR/const_refers_to_static_cross_crate.rs:32:20
+ |
+LL | const U8_MUT3: &u8 = {
+ | ------------------
+LL | unsafe { match static_cross_crate::OPT_ZERO { Some(ref u) => u, None => panic!() } }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constant accesses static
+ |
+note: the lint level is defined here
+ --> $DIR/const_refers_to_static_cross_crate.rs:30:8
+ |
+LL | #[warn(const_err)]
+ | ^^^^^^^^^
+ = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
+ = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:68:9
+ |
+LL | U8_MUT3 => true,
+ | ^^^^^^^
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:40:9
+ |
+LL | SLICE_MUT => true,
+ | ^^^^^^^^^
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:49:9
+ |
+LL | U8_MUT => true,
+ | ^^^^^^
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:60:9
+ |
+LL | U8_MUT2 => true,
+ | ^^^^^^^
+
+error: could not evaluate constant pattern
+ --> $DIR/const_refers_to_static_cross_crate.rs:68:9
+ |
+LL | U8_MUT3 => true,
+ | ^^^^^^^
+
+warning: skipping const checks
+ |
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:14:15
+ |
+LL | unsafe { &static_cross_crate::ZERO }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:14:15
+ |
+LL | unsafe { &static_cross_crate::ZERO }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:19:15
+ |
+LL | unsafe { &static_cross_crate::ZERO[0] }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:19:15
+ |
+LL | unsafe { &static_cross_crate::ZERO[0] }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:19:15
+ |
+LL | unsafe { &static_cross_crate::ZERO[0] }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:25:17
+ |
+LL | unsafe { &(*static_cross_crate::ZERO_REF)[0] }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:32:20
+ |
+LL | unsafe { match static_cross_crate::OPT_ZERO { Some(ref u) => u, None => panic!() } }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:32:20
+ |
+LL | unsafe { match static_cross_crate::OPT_ZERO { Some(ref u) => u, None => panic!() } }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:32:20
+ |
+LL | unsafe { match static_cross_crate::OPT_ZERO { Some(ref u) => u, None => panic!() } }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+help: skipping check that does not even have a feature gate
+ --> $DIR/const_refers_to_static_cross_crate.rs:32:20
+ |
+LL | unsafe { match static_cross_crate::OPT_ZERO { Some(ref u) => u, None => panic!() } }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 10 previous errors; 3 warnings emitted
+
+For more information about this error, try `rustc --explain E0080`.
+Future incompatibility report: Future breakage diagnostic:
+warning: any use of this value will cause an error
+ --> $DIR/const_refers_to_static_cross_crate.rs:25:15
+ |
+LL | const U8_MUT2: &u8 = {
+ | ------------------
+LL | unsafe { &(*static_cross_crate::ZERO_REF)[0] }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constant accesses static
+ |
+note: the lint level is defined here
+ --> $DIR/const_refers_to_static_cross_crate.rs:23:8
+ |
+LL | #[warn(const_err)]
+ | ^^^^^^^^^
+ = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
+ = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
+
+Future breakage diagnostic:
+warning: any use of this value will cause an error
+ --> $DIR/const_refers_to_static_cross_crate.rs:32:20
+ |
+LL | const U8_MUT3: &u8 = {
+ | ------------------
+LL | unsafe { match static_cross_crate::OPT_ZERO { Some(ref u) => u, None => panic!() } }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constant accesses static
+ |
+note: the lint level is defined here
+ --> $DIR/const_refers_to_static_cross_crate.rs:30:8
+ |
+LL | #[warn(const_err)]
+ | ^^^^^^^^^
+ = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
+ = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
+