summaryrefslogtreecommitdiff
path: root/src/test/ui/consts/const-integer-bool-ops.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-integer-bool-ops.stderr')
-rw-r--r--src/test/ui/consts/const-integer-bool-ops.stderr16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/test/ui/consts/const-integer-bool-ops.stderr b/src/test/ui/consts/const-integer-bool-ops.stderr
index 8ac3f617a36..7885eb446f0 100644
--- a/src/test/ui/consts/const-integer-bool-ops.stderr
+++ b/src/test/ui/consts/const-integer-bool-ops.stderr
@@ -2,7 +2,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:1:18
|
LL | const X: usize = 42 && 39;
- | ^^ expected bool, found integral variable
+ | ^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`
@@ -11,7 +11,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:1:24
|
LL | const X: usize = 42 && 39;
- | ^^ expected bool, found integral variable
+ | ^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`
@@ -32,7 +32,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:11:19
|
LL | const X1: usize = 42 || 39;
- | ^^ expected bool, found integral variable
+ | ^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`
@@ -41,7 +41,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:11:25
|
LL | const X1: usize = 42 || 39;
- | ^^ expected bool, found integral variable
+ | ^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`
@@ -62,7 +62,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:21:19
|
LL | const X2: usize = -42 || -39;
- | ^^^ expected bool, found integral variable
+ | ^^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`
@@ -71,7 +71,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:21:26
|
LL | const X2: usize = -42 || -39;
- | ^^^ expected bool, found integral variable
+ | ^^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`
@@ -92,7 +92,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:31:19
|
LL | const X3: usize = -42 && -39;
- | ^^^ expected bool, found integral variable
+ | ^^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`
@@ -101,7 +101,7 @@ error[E0308]: mismatched types
--> $DIR/const-integer-bool-ops.rs:31:26
|
LL | const X3: usize = -42 && -39;
- | ^^^ expected bool, found integral variable
+ | ^^^ expected bool, found integer
|
= note: expected type `bool`
found type `{integer}`