1error[E0603]: tuple struct `Bar` is private
2  --> $DIR/issue-75062-fieldless-tuple-struct.rs:9:10
3   |
4LL |     foo::Bar();
5   |          ^^^ private tuple struct
6   |
7note: the tuple struct `Bar` is defined here
8  --> $DIR/issue-75062-fieldless-tuple-struct.rs:5:5
9   |
10LL |     struct Bar();
11   |     ^^^^^^^^^^^^^
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0603`.
16