summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-66693.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/consts/issue-66693.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/consts/issue-66693.stderr')
-rw-r--r--src/test/ui/consts/issue-66693.stderr38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/test/ui/consts/issue-66693.stderr b/src/test/ui/consts/issue-66693.stderr
deleted file mode 100644
index e9a3fced6..000000000
--- a/src/test/ui/consts/issue-66693.stderr
+++ /dev/null
@@ -1,38 +0,0 @@
-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)
-
-note: erroneous constant used
- --> $DIR/issue-66693.rs:11:12
- |
-LL | panic!(&1);
- | ^^
-
-note: erroneous constant used
- --> $DIR/issue-66693.rs:11:12
- |
-LL | panic!(&1);
- | ^^
-
-error: aborting due to 3 previous errors
-