mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
67f455afe1
When constant evaluation fails because its MIR is tainted by errors, suppress note indicating that erroneous constant was used, since those errors have to be fixed regardless of the constant being used or not.
112 lines
3.2 KiB
Plaintext
112 lines
3.2 KiB
Plaintext
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`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:10:19
|
|
|
|
|
LL | const X1: usize = 42 || 39;
|
|
| ^^ expected `bool`, found integer
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:10:25
|
|
|
|
|
LL | const X1: usize = 42 || 39;
|
|
| ^^ expected `bool`, found integer
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:10:19
|
|
|
|
|
LL | const X1: usize = 42 || 39;
|
|
| ^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:19:19
|
|
|
|
|
LL | const X2: usize = -42 || -39;
|
|
| ^^^ expected `bool`, found integer
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:19:26
|
|
|
|
|
LL | const X2: usize = -42 || -39;
|
|
| ^^^ expected `bool`, found integer
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:19:19
|
|
|
|
|
LL | const X2: usize = -42 || -39;
|
|
| ^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:28:19
|
|
|
|
|
LL | const X3: usize = -42 && -39;
|
|
| ^^^ expected `bool`, found integer
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:28:26
|
|
|
|
|
LL | const X3: usize = -42 && -39;
|
|
| ^^^ expected `bool`, found integer
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:28:19
|
|
|
|
|
LL | const X3: usize = -42 && -39;
|
|
| ^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:37:18
|
|
|
|
|
LL | const Y: usize = 42.0 == 42.0;
|
|
| ^^^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:42:19
|
|
|
|
|
LL | const Y1: usize = 42.0 >= 42.0;
|
|
| ^^^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:47:19
|
|
|
|
|
LL | const Y2: usize = 42.0 <= 42.0;
|
|
| ^^^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:52:19
|
|
|
|
|
LL | const Y3: usize = 42.0 > 42.0;
|
|
| ^^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:57:19
|
|
|
|
|
LL | const Y4: usize = 42.0 < 42.0;
|
|
| ^^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/const-integer-bool-ops.rs:62:19
|
|
|
|
|
LL | const Y5: usize = 42.0 != 42.0;
|
|
| ^^^^^^^^^^^^ expected `usize`, found `bool`
|
|
|
|
error: aborting due to 18 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|