2020-09-02 02:40:56 -05:00
|
|
|
error[E0616]: field `inner` of struct `Mutex` is private
|
2020-03-22 13:18:06 -05:00
|
|
|
--> $DIR/issue-54062.rs:10:24
|
2019-07-26 03:39:58 -05:00
|
|
|
|
|
2020-09-24 10:11:16 -05:00
|
|
|
LL | let _ = test.comps.inner.try_lock();
|
2020-03-22 13:18:06 -05:00
|
|
|
| ^^^^^ private field
|
2019-07-26 03:39:58 -05:00
|
|
|
|
2020-09-24 10:11:16 -05:00
|
|
|
error: aborting due to previous error
|
2019-07-26 03:39:58 -05:00
|
|
|
|
2020-09-24 10:11:16 -05:00
|
|
|
For more information about this error, try `rustc --explain E0616`.
|