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

73 lines
1.9 KiB
Plaintext
Raw Normal View History

error[E0423]: expected value, found struct `Z`
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:26:9
|
2017-03-15 16:24:02 -05:00
26 | Z;
| ^
| |
| did you mean `S`?
| constructor is not visible here due to private fields
2017-07-05 11:58:22 -05:00
| did you mean `Z { /* 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
|
22 | use m::n::Z;
|
error[E0423]: expected value, found struct `S`
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:36:5
|
2017-03-15 16:24:02 -05:00
36 | S;
| ^
| |
| constructor is not visible here due to private fields
2017-07-05 11:58:22 -05:00
| did you mean `S { /* 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
|
32 | use m::S;
|
error[E0423]: expected value, found struct `xcrate::S`
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:42:5
|
2017-03-15 16:24:02 -05:00
42 | xcrate::S;
| ^^^^^^^^^
| |
| constructor is not visible here due to private fields
2017-07-05 11:58:22 -05:00
| did you mean `xcrate::S { /* 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
|
32 | use m::S;
|
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `Z` is private
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:25:9
|
2017-03-15 16:24:02 -05:00
25 | n::Z; //~ ERROR tuple struct `Z` is private
| ^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `S` is private
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:35:5
|
2017-03-15 16:24:02 -05:00
35 | m::S; //~ ERROR tuple struct `S` is private
| ^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `Z` is private
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:39:5
|
2017-03-15 16:24:02 -05:00
39 | m::n::Z; //~ ERROR tuple struct `Z` is private
| ^^^^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `S` is private
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:41:5
|
2017-03-15 16:24:02 -05:00
41 | xcrate::m::S; //~ ERROR tuple struct `S` is private
| ^^^^^^^^^^^^
2017-06-02 14:38:52 -05:00
error[E0603]: tuple struct `Z` is private
2017-03-15 16:24:02 -05:00
--> $DIR/privacy-struct-ctor.rs:45:5
|
2017-03-15 16:24:02 -05:00
45 | xcrate::m::n::Z; //~ ERROR tuple struct `Z` is private
| ^^^^^^^^^^^^^^^
error: aborting due to 8 previous errors