]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/consts/const-eval/feature-gate-const_panic.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / feature-gate-const_panic.stderr
index 56746c04f5cd71d9ae51e57bc252962288d8b450..29c98c45c4e4c9285dc6e05b498b4af8af7a95b1 100644 (file)
@@ -9,20 +9,20 @@ LL | const Z: () = panic!("cheese");
    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
 
 error[E0658]: panicking in constants is unstable
-  --> $DIR/feature-gate-const_panic.rs:9:15
+  --> $DIR/feature-gate-const_panic.rs:6:15
    |
-LL | const X: () = unimplemented!();
-   |               ^^^^^^^^^^^^^^^^
+LL | const Y: () = unreachable!();
+   |               ^^^^^^^^^^^^^^
    |
    = note: see issue #51999 <https://github.com/rust-lang/rust/issues/51999> for more information
    = help: add `#![feature(const_panic)]` to the crate attributes to enable
    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
 
 error[E0658]: panicking in constants is unstable
-  --> $DIR/feature-gate-const_panic.rs:6:15
+  --> $DIR/feature-gate-const_panic.rs:9:15
    |
-LL | const Y: () = unreachable!();
-   |               ^^^^^^^^^^^^^^
+LL | const X: () = unimplemented!();
+   |               ^^^^^^^^^^^^^^^^
    |
    = note: see issue #51999 <https://github.com/rust-lang/rust/issues/51999> for more information
    = help: add `#![feature(const_panic)]` to the crate attributes to enable