summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/issue-75062-fieldless-tuple-struct.stderr
blob: b00e566f8f9c72a1d83ae0069a90a1c5255f94fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0603]: tuple struct `Bar` is private
  --> $DIR/issue-75062-fieldless-tuple-struct.rs:9:10
   |
LL |     foo::Bar();
   |          ^^^ private tuple struct
   |
note: the tuple struct `Bar` is defined here
  --> $DIR/issue-75062-fieldless-tuple-struct.rs:5:5
   |
LL |     struct Bar();
   |     ^^^^^^^^^^^^^

error: aborting due to 1 previous error

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