File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
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
3
3
|
4
4
LL | named->foo;
5
5
| ^^
@@ -12,7 +12,7 @@ LL + named.foo;
12
12
|
13
13
14
14
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
16
16
|
17
17
LL | unnamed->0;
18
18
| ^^
@@ -25,7 +25,7 @@ LL + unnamed.0;
25
25
|
26
26
27
27
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
29
29
|
30
30
LL | t->0;
31
31
| ^^
@@ -38,7 +38,7 @@ LL + t.0;
38
38
|
39
39
40
40
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
42
42
|
43
43
LL | t->1;
44
44
| ^^
@@ -51,7 +51,7 @@ LL + t.1;
51
51
|
52
52
53
53
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
55
55
|
56
56
LL | foo->clone();
57
57
| ^^
You can’t perform that action at this time.
0 commit comments