Skip to content

Commit 021c3b0

Browse files
committed
keep ERROR in message
1 parent 18bb2dd commit 021c3b0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/ui/associated-consts/defaults-cyclic-fail.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// build-fail
2-
//~^ cycle detected when normalizing `<() as Tr>::A` [E0391]
2+
//~^ ERROR cycle detected when normalizing `<() as Tr>::A` [E0391]
33

44
// Cyclic assoc. const defaults don't error unless *used*
55
trait Tr {

src/test/ui/consts/const-eval/const-eval-query-stack.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
warning: any use of this value will cause an error
2-
--> $DIR/const-eval-query-stack.rs:21:16
2+
--> $DIR/const-eval-query-stack.rs:20:16
33
|
44
LL | const X: i32 = 1 / 0;
55
| ---------------^^^^^-
66
| |
77
| attempt to divide `1_i32` by zero
88
|
99
note: the lint level is defined here
10-
--> $DIR/const-eval-query-stack.rs:20:8
10+
--> $DIR/const-eval-query-stack.rs:19:8
1111
|
1212
LL | #[warn(const_err)]
1313
| ^^^^^^^^^
1414
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1515
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
1616

1717
error[E0080]: evaluation of constant value failed
18-
--> $DIR/const-eval-query-stack.rs:25:28
18+
--> $DIR/const-eval-query-stack.rs:24:28
1919
|
2020
LL | let x: &'static i32 = &X;
2121
| ^ referenced constant has errors

0 commit comments

Comments
 (0)