summaryrefslogtreecommitdiffstats
path: root/src/test/ui/privacy/private-type-in-interface.stderr
blob: 4e87caa341569dd8c38ba3f52c138c066c7c1742 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
error: type `Priv` is private
  --> $DIR/private-type-in-interface.rs:15:9
   |
LL | fn f(_: m::Alias) {}
   |         ^^^^^^^^ private type

error: type `Priv` is private
  --> $DIR/private-type-in-interface.rs:15:6
   |
LL | fn f(_: m::Alias) {}
   |      ^ private type

error: type `ext::Priv` is private
  --> $DIR/private-type-in-interface.rs:17:13
   |
LL | fn f_ext(_: ext::Alias) {}
   |             ^^^^^^^^^^ private type

error: type `ext::Priv` is private
  --> $DIR/private-type-in-interface.rs:17:10
   |
LL | fn f_ext(_: ext::Alias) {}
   |          ^ private type

error: type `Priv` is private
  --> $DIR/private-type-in-interface.rs:21:6
   |
LL | impl m::Alias {}
   |      ^^^^^^^^ private type

error: type `ext::Priv` is private
  --> $DIR/private-type-in-interface.rs:22:14
   |
LL | impl Tr1 for ext::Alias {}
   |              ^^^^^^^^^^ private type

error: type `Priv` is private
  --> $DIR/private-type-in-interface.rs:23:10
   |
LL | type A = <m::Alias as m::Trait>::X;
   |          ^^^^^^^^^^^^^^^^^^^^^^^^^ private type

error: type `Priv` is private
  --> $DIR/private-type-in-interface.rs:27:11
   |
LL | fn g() -> impl Tr2<m::Alias> { 0 }
   |           ^^^^^^^^^^^^^^^^^^ private type

error: type `ext::Priv` is private
  --> $DIR/private-type-in-interface.rs:28:15
   |
LL | fn g_ext() -> impl Tr2<ext::Alias> { 0 }
   |               ^^^^^^^^^^^^^^^^^^^^ private type

error: aborting due to 9 previous errors