summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/where-pub-type-impls-priv-trait.stderr
blob: ee79ce3f5d75017c78ba9514a8cb6db2be3c3b21 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
warning: trait `PrivTr` is more private than the item `S`
  --> $DIR/where-pub-type-impls-priv-trait.rs:20:1
   |
LL | pub struct S
   | ^^^^^^^^^^^^ struct `S` is reachable at visibility `pub`
   |
note: but trait `PrivTr` is only usable at visibility `pub(crate)`
  --> $DIR/where-pub-type-impls-priv-trait.rs:10:1
   |
LL | trait PrivTr {}
   | ^^^^^^^^^^^^
   = note: `#[warn(private_bounds)]` on by default

warning: trait `PrivTr` is more private than the item `E`
  --> $DIR/where-pub-type-impls-priv-trait.rs:27:1
   |
LL | pub enum E
   | ^^^^^^^^^^ enum `E` is reachable at visibility `pub`
   |
note: but trait `PrivTr` is only usable at visibility `pub(crate)`
  --> $DIR/where-pub-type-impls-priv-trait.rs:10:1
   |
LL | trait PrivTr {}
   | ^^^^^^^^^^^^

warning: trait `PrivTr` is more private than the item `f`
  --> $DIR/where-pub-type-impls-priv-trait.rs:34:1
   |
LL | / pub fn f()
LL | |
LL | | where
LL | |     PubTy: PrivTr
   | |_________________^ function `f` is reachable at visibility `pub`
   |
note: but trait `PrivTr` is only usable at visibility `pub(crate)`
  --> $DIR/where-pub-type-impls-priv-trait.rs:10:1
   |
LL | trait PrivTr {}
   | ^^^^^^^^^^^^

warning: trait `PrivTr` is more private than the item `S`
  --> $DIR/where-pub-type-impls-priv-trait.rs:41:1
   |
LL | / impl S
LL | |
LL | | where
LL | |     PubTy: PrivTr
   | |_________________^ implementation `S` is reachable at visibility `pub`
   |
note: but trait `PrivTr` is only usable at visibility `pub(crate)`
  --> $DIR/where-pub-type-impls-priv-trait.rs:10:1
   |
LL | trait PrivTr {}
   | ^^^^^^^^^^^^

warning: trait `PrivTr` is more private than the item `S::f`
  --> $DIR/where-pub-type-impls-priv-trait.rs:46:5
   |
LL | /     pub fn f()
LL | |
LL | |     where
LL | |         PubTy: PrivTr
   | |_____________________^ associated function `S::f` is reachable at visibility `pub`
   |
note: but trait `PrivTr` is only usable at visibility `pub(crate)`
  --> $DIR/where-pub-type-impls-priv-trait.rs:10:1
   |
LL | trait PrivTr {}
   | ^^^^^^^^^^^^

warning: 5 warnings emitted