summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-err-multi.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-err-multi.stderr')
-rw-r--r--src/test/ui/consts/const-err-multi.stderr103
1 files changed, 103 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-err-multi.stderr b/src/test/ui/consts/const-err-multi.stderr
new file mode 100644
index 000000000..f17984365
--- /dev/null
+++ b/src/test/ui/consts/const-err-multi.stderr
@@ -0,0 +1,103 @@
+error: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:3:19
+ |
+LL | pub const A: i8 = -i8::MIN;
+ | --------------- ^^^^^^^^ attempt to negate `i8::MIN`, which would overflow
+ |
+note: the lint level is defined here
+ --> $DIR/const-err-multi.rs:1:9
+ |
+LL | #![deny(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: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:6:19
+ |
+LL | pub const B: i8 = A;
+ | --------------- ^ referenced constant has errors
+ |
+ = 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: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:9:19
+ |
+LL | pub const C: u8 = A as u8;
+ | --------------- ^ referenced constant has errors
+ |
+ = 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: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:12:24
+ |
+LL | pub const D: i8 = 50 - A;
+ | --------------- ^ referenced constant has errors
+ |
+ = 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: aborting due to 4 previous errors
+
+Future incompatibility report: Future breakage diagnostic:
+error: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:3:19
+ |
+LL | pub const A: i8 = -i8::MIN;
+ | --------------- ^^^^^^^^ attempt to negate `i8::MIN`, which would overflow
+ |
+note: the lint level is defined here
+ --> $DIR/const-err-multi.rs:1:9
+ |
+LL | #![deny(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:
+error: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:6:19
+ |
+LL | pub const B: i8 = A;
+ | --------------- ^ referenced constant has errors
+ |
+note: the lint level is defined here
+ --> $DIR/const-err-multi.rs:1:9
+ |
+LL | #![deny(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:
+error: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:9:19
+ |
+LL | pub const C: u8 = A as u8;
+ | --------------- ^ referenced constant has errors
+ |
+note: the lint level is defined here
+ --> $DIR/const-err-multi.rs:1:9
+ |
+LL | #![deny(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:
+error: any use of this value will cause an error
+ --> $DIR/const-err-multi.rs:12:24
+ |
+LL | pub const D: i8 = 50 - A;
+ | --------------- ^ referenced constant has errors
+ |
+note: the lint level is defined here
+ --> $DIR/const-err-multi.rs:1:9
+ |
+LL | #![deny(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>
+