Skip to content

Commit 24be75d

Browse files
committed
fix rebase
1 parent d63d363 commit 24be75d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/ui/if-without-block.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
error: expected `{`, found `}`
22
--> $DIR/if-without-block.rs:17:1
33
|
4-
13 | if 5 == {
4+
LL | if 5 == {
55
| -- this `if` statement has a condition, but no block
66
...
7-
17 | }
7+
LL | }
88
| ^
99

1010
error: aborting due to previous error

src/test/ui/suggestions/missing-comma-in-match.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
error: expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
22
--> $DIR/missing-comma-in-match.rs:14:18
33
|
4-
13 | &None => 1
4+
LL | &None => 1
55
| - help: missing a comma here to end this `match` arm
6-
14 | &Some(2) => { 3 }
6+
LL | &Some(2) => { 3 }
77
| ^^ expected one of `,`, `.`, `?`, `}`, or an operator here
88

99
error: aborting due to previous error

0 commit comments

Comments
 (0)