summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-66693.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/issue-66693.stderr')
-rw-r--r--src/test/ui/consts/issue-66693.stderr47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/test/ui/consts/issue-66693.stderr b/src/test/ui/consts/issue-66693.stderr
new file mode 100644
index 000000000..5460cc1ee
--- /dev/null
+++ b/src/test/ui/consts/issue-66693.stderr
@@ -0,0 +1,47 @@
+error: argument to `panic!()` in a const context must have type `&str`
+ --> $DIR/issue-66693.rs:4:15
+ |
+LL | const _: () = panic!(1);
+ | ^^^^^^^^^
+ |
+ = note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: argument to `panic!()` in a const context must have type `&str`
+ --> $DIR/issue-66693.rs:7:19
+ |
+LL | static _FOO: () = panic!(true);
+ | ^^^^^^^^^^^^
+ |
+ = note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: argument to `panic!()` in a const context must have type `&str`
+ --> $DIR/issue-66693.rs:11:5
+ |
+LL | panic!(&1);
+ | ^^^^^^^^^^
+ |
+ = note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: erroneous constant used
+ --> $DIR/issue-66693.rs:11:12
+ |
+LL | panic!(&1);
+ | ^^ referenced constant has errors
+ |
+ = note: `#[deny(const_err)]` on by default
+ = 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: erroneous constant used
+ --> $DIR/issue-66693.rs:11:12
+ |
+LL | panic!(&1);
+ | ^^ referenced constant has errors
+ |
+ = note: `#[deny(const_err)]` on by default
+ = 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>
+