Skip to content

Commit 0f82d47

Browse files
committed
fixed newline
1 parent eed675d commit 0f82d47

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/ui/parser/expr-rarrow-call.stderr

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: `->` is not valid syntax for field accesses and method calls
2-
--> $DIR/expr-rarrow-call.rs:13:10
2+
--> $DIR/expr-rarrow-call.rs:14:10
33
|
44
LL | named->foo;
55
| ^^
@@ -12,7 +12,7 @@ LL + named.foo;
1212
|
1313

1414
error: `->` is not valid syntax for field accesses and method calls
15-
--> $DIR/expr-rarrow-call.rs:17:12
15+
--> $DIR/expr-rarrow-call.rs:18:12
1616
|
1717
LL | unnamed->0;
1818
| ^^
@@ -25,7 +25,7 @@ LL + unnamed.0;
2525
|
2626

2727
error: `->` is not valid syntax for field accesses and method calls
28-
--> $DIR/expr-rarrow-call.rs:21:6
28+
--> $DIR/expr-rarrow-call.rs:22:6
2929
|
3030
LL | t->0;
3131
| ^^
@@ -38,7 +38,7 @@ LL + t.0;
3838
|
3939

4040
error: `->` is not valid syntax for field accesses and method calls
41-
--> $DIR/expr-rarrow-call.rs:22:6
41+
--> $DIR/expr-rarrow-call.rs:23:6
4242
|
4343
LL | t->1;
4444
| ^^
@@ -51,7 +51,7 @@ LL + t.1;
5151
|
5252

5353
error: `->` is not valid syntax for field accesses and method calls
54-
--> $DIR/expr-rarrow-call.rs:29:8
54+
--> $DIR/expr-rarrow-call.rs:30:8
5555
|
5656
LL | foo->clone();
5757
| ^^

0 commit comments

Comments
 (0)