summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-91210-ptr-method.stderr
blob: f2f996c7b304e93c18b552bd0ecf6a681cd70adc (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 1 previous error

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