@@ -17,22 +17,22 @@ LL | r.a_unstable_undeclared_pub;
17
17
= help: add `#![feature(unstable_undeclared)]` to the crate attributes to enable
18
18
19
19
error[E0616]: field `b_crate` of struct `pub_and_stability::Record` is private
20
- --> $DIR/explore-issue-38412.rs:31:5
20
+ --> $DIR/explore-issue-38412.rs:31:7
21
21
|
22
22
LL | r.b_crate;
23
- | ^^^^^^^^^
23
+ | ^^^^^^^ private field
24
24
25
25
error[E0616]: field `c_mod` of struct `pub_and_stability::Record` is private
26
- --> $DIR/explore-issue-38412.rs:32:5
26
+ --> $DIR/explore-issue-38412.rs:32:7
27
27
|
28
28
LL | r.c_mod;
29
- | ^^^^^^^
29
+ | ^^^^^ private field
30
30
31
31
error[E0616]: field `d_priv` of struct `pub_and_stability::Record` is private
32
- --> $DIR/explore-issue-38412.rs:33:5
32
+ --> $DIR/explore-issue-38412.rs:33:7
33
33
|
34
34
LL | r.d_priv;
35
- | ^^^^^^^^
35
+ | ^^^^^^ private field
36
36
37
37
error[E0658]: use of unstable library feature 'unstable_undeclared'
38
38
--> $DIR/explore-issue-38412.rs:37:5
@@ -44,22 +44,22 @@ LL | t.2;
44
44
= help: add `#![feature(unstable_undeclared)]` to the crate attributes to enable
45
45
46
46
error[E0616]: field `3` of struct `pub_and_stability::Tuple` is private
47
- --> $DIR/explore-issue-38412.rs:38:5
47
+ --> $DIR/explore-issue-38412.rs:38:7
48
48
|
49
49
LL | t.3;
50
- | ^^^
50
+ | ^ private field
51
51
52
52
error[E0616]: field `4` of struct `pub_and_stability::Tuple` is private
53
- --> $DIR/explore-issue-38412.rs:39:5
53
+ --> $DIR/explore-issue-38412.rs:39:7
54
54
|
55
55
LL | t.4;
56
- | ^^^
56
+ | ^ private field
57
57
58
58
error[E0616]: field `5` of struct `pub_and_stability::Tuple` is private
59
- --> $DIR/explore-issue-38412.rs:40:5
59
+ --> $DIR/explore-issue-38412.rs:40:7
60
60
|
61
61
LL | t.5;
62
- | ^^^
62
+ | ^ private field
63
63
64
64
error[E0658]: use of unstable library feature 'unstable_undeclared'
65
65
--> $DIR/explore-issue-38412.rs:44:7
0 commit comments