summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-90483-inaccessible-field-adjustment.stderr
blob: 02cdc102c15baed86626b785b6f88304d0ec9166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0616]: field `foo` of struct `S` is private
  --> $DIR/issue-90483-inaccessible-field-adjustment.rs:11:18
   |
LL |   || s.foo() + s.foo;
   |                  ^^^ private field
   |
help: a method `foo` also exists, call it with parentheses
   |
LL |   || s.foo() + s.foo();
   |                     ++

error: aborting due to previous error

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