1
1
error[E0423]: expected value, found struct `Z`
2
- --> $DIR/privacy-struct-ctor.rs:28 :9
2
+ --> $DIR/privacy-struct-ctor.rs:26 :9
3
3
|
4
- 28 | Z;
4
+ 26 | Z;
5
5
| ^
6
6
| |
7
7
| did you mean `Z { /* fields */ }`?
@@ -11,9 +11,9 @@ error[E0423]: expected value, found struct `Z`
11
11
`use m::n::Z;`
12
12
13
13
error[E0423]: expected value, found struct `S`
14
- --> $DIR/privacy-struct-ctor.rs:38 :5
14
+ --> $DIR/privacy-struct-ctor.rs:36 :5
15
15
|
16
- 38 | S;
16
+ 36 | S;
17
17
| ^
18
18
| |
19
19
| did you mean `S { /* fields */ }`?
@@ -23,9 +23,9 @@ error[E0423]: expected value, found struct `S`
23
23
`use m::S;`
24
24
25
25
error[E0423]: expected value, found struct `xcrate::S`
26
- --> $DIR/privacy-struct-ctor.rs:44 :5
26
+ --> $DIR/privacy-struct-ctor.rs:42 :5
27
27
|
28
- 44 | xcrate::S;
28
+ 42 | xcrate::S;
29
29
| ^^^^^^^^^
30
30
| |
31
31
| did you mean `xcrate::S { /* fields */ }`?
@@ -35,33 +35,33 @@ error[E0423]: expected value, found struct `xcrate::S`
35
35
`use m::S;`
36
36
37
37
error: tuple struct `Z` is private
38
- --> $DIR/privacy-struct-ctor.rs:27 :9
38
+ --> $DIR/privacy-struct-ctor.rs:25 :9
39
39
|
40
- 27 | n::Z; //~ ERROR tuple struct `Z` is private
40
+ 25 | n::Z; //~ ERROR tuple struct `Z` is private
41
41
| ^^^^
42
42
43
43
error: tuple struct `S` is private
44
- --> $DIR/privacy-struct-ctor.rs:37 :5
44
+ --> $DIR/privacy-struct-ctor.rs:35 :5
45
45
|
46
- 37 | m::S; //~ ERROR tuple struct `S` is private
46
+ 35 | m::S; //~ ERROR tuple struct `S` is private
47
47
| ^^^^
48
48
49
49
error: tuple struct `Z` is private
50
- --> $DIR/privacy-struct-ctor.rs:41 :5
50
+ --> $DIR/privacy-struct-ctor.rs:39 :5
51
51
|
52
- 41 | m::n::Z; //~ ERROR tuple struct `Z` is private
52
+ 39 | m::n::Z; //~ ERROR tuple struct `Z` is private
53
53
| ^^^^^^^
54
54
55
55
error: tuple struct `S` is private
56
- --> $DIR/privacy-struct-ctor.rs:43 :5
56
+ --> $DIR/privacy-struct-ctor.rs:41 :5
57
57
|
58
- 43 | xcrate::m::S; //~ ERROR tuple struct `S` is private
58
+ 41 | xcrate::m::S; //~ ERROR tuple struct `S` is private
59
59
| ^^^^^^^^^^^^
60
60
61
61
error: tuple struct `Z` is private
62
- --> $DIR/privacy-struct-ctor.rs:47 :5
62
+ --> $DIR/privacy-struct-ctor.rs:45 :5
63
63
|
64
- 47 | xcrate::m::n::Z; //~ ERROR tuple struct `Z` is private
64
+ 45 | xcrate::m::n::Z; //~ ERROR tuple struct `Z` is private
65
65
| ^^^^^^^^^^^^^^^
66
66
67
67
error: aborting due to 8 previous errors
0 commit comments