summary refs log tree commit diff
path: root/src/test/ui/hygiene/fields.stderr
blob: c4be1834c04f8d60fa262e1e56b4ea7a93c197e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
error: type `foo::S` is private
  --> $DIR/fields.rs:25:17
   |
LL |         let s = S { x: 0 }; //~ ERROR type `foo::S` is private
   |                 ^^^^^^^^^^
...
LL |     let s = foo::m!(S, x);
   |             ------------- in this macro invocation

error: type `foo::S` is private
  --> $DIR/fields.rs:26:17
   |
LL |         let _ = s.x; //~ ERROR type `foo::S` is private
   |                 ^
...
LL |     let s = foo::m!(S, x);
   |             ------------- in this macro invocation

error: type `foo::T` is private
  --> $DIR/fields.rs:28:17
   |
LL |         let t = T(0); //~ ERROR type `foo::T` is private
   |                 ^^^^
...
LL |     let s = foo::m!(S, x);
   |             ------------- in this macro invocation

error: type `foo::T` is private
  --> $DIR/fields.rs:29:17
   |
LL |         let _ = t.0; //~ ERROR type `foo::T` is private
   |                 ^
...
LL |     let s = foo::m!(S, x);
   |             ------------- in this macro invocation

error: aborting due to 4 previous errors