summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-91210-ptr-method.stderr
blob: 7a0cfb2cf51a727bb39f0df6a92a3cf93e5842ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0615]: attempted to take value of method `read` on type `*mut Foo`
  --> $DIR/issue-91210-ptr-method.rs:10:7
   |
LL |     x.read = 4;
   |       ^^^^ method, not a field
   |
help: to access the field, dereference first
   |
LL |     (*x).read = 4;
   |     ++ +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0615`.