mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
error: `->` is not valid syntax for field accesses and method calls
|
|
--> $DIR/expr-rarrow-call.rs:14:10
|
|
|
|
|
LL | named->foo;
|
|
| ^^
|
|
|
|
|
= help: the `.` operator will automatically dereference the value, except if the value is a raw pointer
|
|
help: try using `.` instead
|
|
|
|
|
LL - named->foo;
|
|
LL + named.foo;
|
|
|
|
|
|
|
error: `->` is not valid syntax for field accesses and method calls
|
|
--> $DIR/expr-rarrow-call.rs:18:12
|
|
|
|
|
LL | unnamed->0;
|
|
| ^^
|
|
|
|
|
= help: the `.` operator will automatically dereference the value, except if the value is a raw pointer
|
|
help: try using `.` instead
|
|
|
|
|
LL - unnamed->0;
|
|
LL + unnamed.0;
|
|
|
|
|
|
|
error: `->` is not valid syntax for field accesses and method calls
|
|
--> $DIR/expr-rarrow-call.rs:22:6
|
|
|
|
|
LL | t->0;
|
|
| ^^
|
|
|
|
|
= help: the `.` operator will automatically dereference the value, except if the value is a raw pointer
|
|
help: try using `.` instead
|
|
|
|
|
LL - t->0;
|
|
LL + t.0;
|
|
|
|
|
|
|
error: `->` is not valid syntax for field accesses and method calls
|
|
--> $DIR/expr-rarrow-call.rs:23:6
|
|
|
|
|
LL | t->1;
|
|
| ^^
|
|
|
|
|
= help: the `.` operator will automatically dereference the value, except if the value is a raw pointer
|
|
help: try using `.` instead
|
|
|
|
|
LL - t->1;
|
|
LL + t.1;
|
|
|
|
|
|
|
error: `->` is not valid syntax for field accesses and method calls
|
|
--> $DIR/expr-rarrow-call.rs:30:8
|
|
|
|
|
LL | foo->clone();
|
|
| ^^
|
|
|
|
|
= help: the `.` operator will automatically dereference the value, except if the value is a raw pointer
|
|
help: try using `.` instead
|
|
|
|
|
LL - foo->clone();
|
|
LL + foo.clone();
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|