2020-09-02 10:40:56 +03:00
|
|
|
error[E0616]: field `len` of struct `S` is private
|
2020-03-22 11:18:06 -07:00
|
|
|
--> $DIR/issue-26472.rs:11:15
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let v = s.len;
|
2020-03-22 11:18:06 -07:00
|
|
|
| ^^^ private field
|
2020-03-11 20:38:21 -07:00
|
|
|
|
|
|
|
|
help: a method `len` also exists, call it with parentheses
|
|
|
|
|
|
|
|
|
LL | let v = s.len();
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2019-01-02 17:01:03 -05:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0616]: field `len` of struct `S` is private
|
2020-03-22 11:18:06 -07:00
|
|
|
--> $DIR/issue-26472.rs:12:7
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | s.len = v;
|
2020-03-22 11:18:06 -07:00
|
|
|
| ^^^ private field
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2019-01-02 17:01:03 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0616`.
|