rust/src/test/ui/resolve/privacy-struct-ctor.stderr

80 lines
2.0 KiB
Plaintext
Raw Normal View History

error[E0423]: expected value, found struct `Z`
--> $DIR/privacy-struct-ctor.rs:30:9
|
2018-02-22 18:42:32 -06:00
LL | Z;
| ^
| |
| did you mean `S`?
| constructor is not visible here due to private fields
2017-05-10 06:19:29 -05:00
help: possible better candidate is found in another module, you can import it into scope
2017-06-28 01:16:04 -05:00
|
2018-02-24 17:01:39 -06:00
LL | use m::n::Z;
|
error[E0423]: expected value, found struct `S`
--> $DIR/privacy-struct-ctor.rs:43:5
|
2018-02-22 18:42:32 -06:00
LL | S;
| ^ constructor is not visible here due to private fields
2017-05-10 06:19:29 -05:00
help: possible better candidate is found in another module, you can import it into scope
2017-06-28 01:16:04 -05:00
|
2018-02-24 17:01:39 -06:00
LL | use m::S;
|
error[E0423]: expected value, found struct `S2`
--> $DIR/privacy-struct-ctor.rs:48:5
|
2018-02-22 18:42:32 -06:00
LL | S2;
| ^^ did you mean `S2 { /* fields */ }`?
error[E0423]: expected value, found struct `xcrate::S`
--> $DIR/privacy-struct-ctor.rs:53:5
|
2018-02-22 18:42:32 -06:00
LL | xcrate::S;
| ^^^^^^^^^ constructor is not visible here due to private fields
2017-05-10 06:19:29 -05:00
help: possible better candidate is found in another module, you can import it into scope
2017-06-28 01:16:04 -05:00
|
2018-02-24 17:01:39 -06:00
LL | use m::S;
|
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `Z` is private
--> $DIR/privacy-struct-ctor.rs:28:9
|
2018-02-22 18:42:32 -06:00
LL | n::Z;
| ^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `S` is private
--> $DIR/privacy-struct-ctor.rs:39:5
|
2018-02-22 18:42:32 -06:00
LL | m::S;
| ^^^^
error[E0603]: tuple struct `S` is private
--> $DIR/privacy-struct-ctor.rs:41:16
|
2018-02-22 18:42:32 -06:00
LL | let _: S = m::S(2);
| ^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `Z` is private
--> $DIR/privacy-struct-ctor.rs:45:5
|
2018-02-22 18:42:32 -06:00
LL | m::n::Z;
| ^^^^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `S` is private
--> $DIR/privacy-struct-ctor.rs:51:5
|
2018-02-22 18:42:32 -06:00
LL | xcrate::m::S;
| ^^^^^^^^^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `Z` is private
--> $DIR/privacy-struct-ctor.rs:55:5
|
2018-02-22 18:42:32 -06:00
LL | xcrate::m::n::Z;
| ^^^^^^^^^^^^^^^
error: aborting due to 10 previous errors
2018-03-03 08:59:40 -06:00
Some errors occurred: E0423, E0603.
For more information about an error, try `rustc --explain E0423`.