rust/tests/ui/issues/issue-54062.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
296 B
Plaintext
Raw Normal View History

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