summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-integer-bool-ops.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 /tests/ui/consts/const-integer-bool-ops.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 'tests/ui/consts/const-integer-bool-ops.stderr')
-rw-r--r--tests/ui/consts/const-integer-bool-ops.stderr171
1 files changed, 171 insertions, 0 deletions
diff --git a/tests/ui/consts/const-integer-bool-ops.stderr b/tests/ui/consts/const-integer-bool-ops.stderr
new file mode 100644
index 000000000..b5c3b22fd
--- /dev/null
+++ b/tests/ui/consts/const-integer-bool-ops.stderr
@@ -0,0 +1,171 @@
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:1:18
+ |
+LL | const X: usize = 42 && 39;
+ | ^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:1:24
+ |
+LL | const X: usize = 42 && 39;
+ | ^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:1:18
+ |
+LL | const X: usize = 42 && 39;
+ | ^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:8:18
+ |
+LL | const ARR: [i32; X] = [99; 34];
+ | ^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:11:19
+ |
+LL | const X1: usize = 42 || 39;
+ | ^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:11:25
+ |
+LL | const X1: usize = 42 || 39;
+ | ^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:11:19
+ |
+LL | const X1: usize = 42 || 39;
+ | ^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:18:19
+ |
+LL | const ARR1: [i32; X1] = [99; 47];
+ | ^^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:21:19
+ |
+LL | const X2: usize = -42 || -39;
+ | ^^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:21:26
+ |
+LL | const X2: usize = -42 || -39;
+ | ^^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:21:19
+ |
+LL | const X2: usize = -42 || -39;
+ | ^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:28:19
+ |
+LL | const ARR2: [i32; X2] = [99; 18446744073709551607];
+ | ^^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:31:19
+ |
+LL | const X3: usize = -42 && -39;
+ | ^^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:31:26
+ |
+LL | const X3: usize = -42 && -39;
+ | ^^^ expected `bool`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:31:19
+ |
+LL | const X3: usize = -42 && -39;
+ | ^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:38:19
+ |
+LL | const ARR3: [i32; X3] = [99; 6];
+ | ^^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:41:18
+ |
+LL | const Y: usize = 42.0 == 42.0;
+ | ^^^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:44:19
+ |
+LL | const ARRR: [i32; Y] = [99; 1];
+ | ^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:47:19
+ |
+LL | const Y1: usize = 42.0 >= 42.0;
+ | ^^^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:50:20
+ |
+LL | const ARRR1: [i32; Y1] = [99; 1];
+ | ^^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:53:19
+ |
+LL | const Y2: usize = 42.0 <= 42.0;
+ | ^^^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:56:20
+ |
+LL | const ARRR2: [i32; Y2] = [99; 1];
+ | ^^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:59:19
+ |
+LL | const Y3: usize = 42.0 > 42.0;
+ | ^^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:62:20
+ |
+LL | const ARRR3: [i32; Y3] = [99; 0];
+ | ^^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:65:19
+ |
+LL | const Y4: usize = 42.0 < 42.0;
+ | ^^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:68:20
+ |
+LL | const ARRR4: [i32; Y4] = [99; 0];
+ | ^^
+
+error[E0308]: mismatched types
+ --> $DIR/const-integer-bool-ops.rs:71:19
+ |
+LL | const Y5: usize = 42.0 != 42.0;
+ | ^^^^^^^^^^^^ expected `usize`, found `bool`
+
+note: erroneous constant used
+ --> $DIR/const-integer-bool-ops.rs:74:20
+ |
+LL | const ARRR5: [i32; Y5] = [99; 0];
+ | ^^
+
+error: aborting due to 18 previous errors
+
+For more information about this error, try `rustc --explain E0308`.