diff options
| author | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-06-27 14:55:06 +0200 |
|---|---|---|
| committer | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-06-28 11:04:26 +0200 |
| commit | 4d473300a200b26b04335dcd32200878ce8e6e04 (patch) | |
| tree | 1ed2ecc1771e81b16595211ef887d6425d1a8f0b /src/test/ui/const-eval | |
| parent | 4eea1a4e5e28a9a84579ee6a52f115375adefde6 (diff) | |
Turn the use of erroneous constants into errors again
Diffstat (limited to 'src/test/ui/const-eval')
| -rw-r--r-- | src/test/ui/const-eval/conditional_array_execution.nll.stderr | 6 | ||||
| -rw-r--r-- | src/test/ui/const-eval/conditional_array_execution.stderr | 4 | ||||
| -rw-r--r-- | src/test/ui/const-eval/issue-43197.nll.stderr | 10 | ||||
| -rw-r--r-- | src/test/ui/const-eval/issue-43197.stderr | 8 | ||||
| -rw-r--r-- | src/test/ui/const-eval/issue-44578.nll.stderr | 4 | ||||
| -rw-r--r-- | src/test/ui/const-eval/issue-44578.stderr | 2 | ||||
| -rw-r--r-- | src/test/ui/const-eval/issue-50814-2.stderr | 2 | ||||
| -rw-r--r-- | src/test/ui/const-eval/issue-50814.stderr | 2 |
8 files changed, 19 insertions, 19 deletions
diff --git a/src/test/ui/const-eval/conditional_array_execution.nll.stderr b/src/test/ui/const-eval/conditional_array_execution.nll.stderr index 7be9202a2f5..8bc302a2bef 100644 --- a/src/test/ui/const-eval/conditional_array_execution.nll.stderr +++ b/src/test/ui/const-eval/conditional_array_execution.nll.stderr @@ -12,7 +12,7 @@ note: lint level defined here LL | #![warn(const_err)] | ^^^^^^^^^ -warning: referenced constant +warning: referenced constant has errors --> $DIR/conditional_array_execution.rs:19:20 | LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; @@ -27,7 +27,7 @@ warning: this expression will panic at runtime LL | println!("{}", FOO); | ^^^ referenced constant has errors -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/conditional_array_execution.rs:19:5 | LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; @@ -48,7 +48,7 @@ LL | println!("{}", FOO); | = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/conditional_array_execution.rs:19:20 | LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; diff --git a/src/test/ui/const-eval/conditional_array_execution.stderr b/src/test/ui/const-eval/conditional_array_execution.stderr index 8a1b7572179..649da03a5e7 100644 --- a/src/test/ui/const-eval/conditional_array_execution.stderr +++ b/src/test/ui/const-eval/conditional_array_execution.stderr @@ -12,7 +12,7 @@ note: lint level defined here LL | #![warn(const_err)] | ^^^^^^^^^ -warning: referenced constant +warning: referenced constant has errors --> $DIR/conditional_array_execution.rs:19:20 | LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; @@ -27,7 +27,7 @@ warning: this expression will panic at runtime LL | println!("{}", FOO); | ^^^ referenced constant has errors -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/conditional_array_execution.rs:19:20 | LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; diff --git a/src/test/ui/const-eval/issue-43197.nll.stderr b/src/test/ui/const-eval/issue-43197.nll.stderr index 6437369214b..5819e6a9254 100644 --- a/src/test/ui/const-eval/issue-43197.nll.stderr +++ b/src/test/ui/const-eval/issue-43197.nll.stderr @@ -20,7 +20,7 @@ LL | const Y: u32 = foo(0-1); | | | attempt to subtract with overflow -warning: referenced constant +warning: referenced constant has errors --> $DIR/issue-43197.rs:24:23 | LL | const X: u32 = 0-1; @@ -35,7 +35,7 @@ warning: this expression will panic at runtime LL | println!("{} {}", X, Y); | ^ referenced constant has errors -warning: referenced constant +warning: referenced constant has errors --> $DIR/issue-43197.rs:24:26 | LL | const Y: u32 = foo(0-1); @@ -50,7 +50,7 @@ warning: this expression will panic at runtime LL | println!("{} {}", X, Y); | ^ referenced constant has errors -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-43197.rs:24:5 | LL | const X: u32 = 0-1; @@ -71,7 +71,7 @@ LL | println!("{} {}", X, Y); | = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-43197.rs:24:26 | LL | const Y: u32 = foo(0-1); @@ -86,7 +86,7 @@ error[E0080]: erroneous constant used LL | println!("{} {}", X, Y); | ^ referenced constant has errors -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-43197.rs:24:23 | LL | const X: u32 = 0-1; diff --git a/src/test/ui/const-eval/issue-43197.stderr b/src/test/ui/const-eval/issue-43197.stderr index 3cb8b345c67..bf864d81ea3 100644 --- a/src/test/ui/const-eval/issue-43197.stderr +++ b/src/test/ui/const-eval/issue-43197.stderr @@ -20,7 +20,7 @@ LL | const Y: u32 = foo(0-1); | | | attempt to subtract with overflow -warning: referenced constant +warning: referenced constant has errors --> $DIR/issue-43197.rs:24:23 | LL | const X: u32 = 0-1; @@ -35,7 +35,7 @@ warning: this expression will panic at runtime LL | println!("{} {}", X, Y); | ^ referenced constant has errors -warning: referenced constant +warning: referenced constant has errors --> $DIR/issue-43197.rs:24:26 | LL | const Y: u32 = foo(0-1); @@ -50,7 +50,7 @@ warning: this expression will panic at runtime LL | println!("{} {}", X, Y); | ^ referenced constant has errors -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-43197.rs:24:26 | LL | const Y: u32 = foo(0-1); @@ -65,7 +65,7 @@ error[E0080]: erroneous constant used LL | println!("{} {}", X, Y); | ^ referenced constant has errors -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-43197.rs:24:23 | LL | const X: u32 = 0-1; diff --git a/src/test/ui/const-eval/issue-44578.nll.stderr b/src/test/ui/const-eval/issue-44578.nll.stderr index ad4f08966c0..eeb152e00ea 100644 --- a/src/test/ui/const-eval/issue-44578.nll.stderr +++ b/src/test/ui/const-eval/issue-44578.nll.stderr @@ -1,4 +1,4 @@ -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-44578.rs:35:5 | LL | const AMT: usize = [A::AMT][(A::AMT > B::AMT) as usize]; @@ -19,7 +19,7 @@ LL | println!("{}", <Bar<u16, u8> as Foo>::AMT); | = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-44578.rs:35:20 | LL | const AMT: usize = [A::AMT][(A::AMT > B::AMT) as usize]; diff --git a/src/test/ui/const-eval/issue-44578.stderr b/src/test/ui/const-eval/issue-44578.stderr index 28a723a069e..06174f37dca 100644 --- a/src/test/ui/const-eval/issue-44578.stderr +++ b/src/test/ui/const-eval/issue-44578.stderr @@ -1,4 +1,4 @@ -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-44578.rs:35:20 | LL | const AMT: usize = [A::AMT][(A::AMT > B::AMT) as usize]; diff --git a/src/test/ui/const-eval/issue-50814-2.stderr b/src/test/ui/const-eval/issue-50814-2.stderr index 3c59cb0e2bc..1e37e949812 100644 --- a/src/test/ui/const-eval/issue-50814-2.stderr +++ b/src/test/ui/const-eval/issue-50814-2.stderr @@ -1,4 +1,4 @@ -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-50814-2.rs:26:5 | LL | const BAR: usize = [5, 6, 7][T::BOO]; diff --git a/src/test/ui/const-eval/issue-50814.stderr b/src/test/ui/const-eval/issue-50814.stderr index 145279ccc03..16160207c57 100644 --- a/src/test/ui/const-eval/issue-50814.stderr +++ b/src/test/ui/const-eval/issue-50814.stderr @@ -1,4 +1,4 @@ -error[E0080]: referenced constant +error[E0080]: referenced constant has errors --> $DIR/issue-50814.rs:27:5 | LL | const MAX: u8 = A::MAX + B::MAX; |
