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