2020-08-05 06:59:26 -05:00
|
|
|
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();
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-08-05 06:59:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0603`.
|