1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
error: expected `{`, found `=>`
--> $DIR/eq-gt-to-gt-eq.rs:8:10
|
LL | if a => b {}
| ^^ expected `{`
|
note: the `if` expression is missing a block after this condition
--> $DIR/eq-gt-to-gt-eq.rs:8:8
|
LL | if a => b {}
| ^
help: you might have meant to write a "greater than or equal to" comparison
|
LL - if a => b {}
LL + if a >= b {}
|
error: expected `{`, found `=>`
--> $DIR/eq-gt-to-gt-eq.rs:13:10
|
LL | if a => 1 {}
| ^^ expected `{`
|
note: the `if` expression is missing a block after this condition
--> $DIR/eq-gt-to-gt-eq.rs:13:8
|
LL | if a => 1 {}
| ^
help: you might have meant to write a "greater than or equal to" comparison
|
LL - if a => 1 {}
LL + if a >= 1 {}
|
error: expected `{`, found `=>`
--> $DIR/eq-gt-to-gt-eq.rs:18:10
|
LL | if 1 => a {}
| ^^ expected `{`
|
note: the `if` expression is missing a block after this condition
--> $DIR/eq-gt-to-gt-eq.rs:18:8
|
LL | if 1 => a {}
| ^
help: you might have meant to write a "greater than or equal to" comparison
|
LL - if 1 => a {}
LL + if 1 >= a {}
|
error: expected `{`, found `=>`
--> $DIR/eq-gt-to-gt-eq.rs:24:10
|
LL | if a => b && a != b {}
| ^^ expected `{`
|
note: the `if` expression is missing a block after this condition
--> $DIR/eq-gt-to-gt-eq.rs:24:8
|
LL | if a => b && a != b {}
| ^
help: you might have meant to write a "greater than or equal to" comparison
|
LL - if a => b && a != b {}
LL + if a >= b && a != b {}
|
error: expected `{`, found `=>`
--> $DIR/eq-gt-to-gt-eq.rs:30:20
|
LL | if a != b && a => b {}
| ^^ expected `{`
|
note: the `if` expression is missing a block after this condition
--> $DIR/eq-gt-to-gt-eq.rs:30:8
|
LL | if a != b && a => b {}
| ^^^^^^^^^^^
help: you might have meant to write a "greater than or equal to" comparison
|
LL - if a != b && a => b {}
LL + if a != b && a >= b {}
|
error: expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `=>`
--> $DIR/eq-gt-to-gt-eq.rs:36:15
|
LL | let _ = a => b;
| ^^ expected one of 8 possible tokens
|
help: you might have meant to write a "greater than or equal to" comparison
|
LL - let _ = a => b;
LL + let _ = a >= b;
|
error: expected one of `!`, `.`, `::`, `?`, `{`, or an operator, found `=>`
--> $DIR/eq-gt-to-gt-eq.rs:42:13
|
LL | match a => b {
| ----- ^^ expected one of `!`, `.`, `::`, `?`, `{`, or an operator
| |
| while parsing this `match` expression
|
help: you might have meant to write a "greater than or equal to" comparison
|
LL - match a => b {
LL + match a >= b {
|
error: aborting due to 7 previous errors
|