summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-18389.stderr
blob: 18ffc4177d718865ceb707e575cdc1ccfb889937 (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
error[E0445]: private trait `Private<<Self as Public>::P, <Self as Public>::R>` in public interface
  --> $DIR/issue-18389.rs:14:1
   |
LL |   trait Private<P, R> {
   |   ------------------- `Private<<Self as Public>::P, <Self as Public>::R>` declared as private
...
LL | / pub trait Public: Private<
LL | |
LL | |
LL | |     <Self as Public>::P,
LL | |     <Self as Public>::R
LL | | > {
   | |_^ can't leak private trait

warning: trait `Private<<Self as Public>::P, <Self as Public>::R>` is more private than the item `Public`
  --> $DIR/issue-18389.rs:14:1
   |
LL | / pub trait Public: Private<
LL | |
LL | |
LL | |     <Self as Public>::P,
LL | |     <Self as Public>::R
LL | | > {
   | |_^ trait `Public` is reachable at visibility `pub`
   |
note: but trait `Private<<Self as Public>::P, <Self as Public>::R>` is only usable at visibility `pub(crate)`
  --> $DIR/issue-18389.rs:11:1
   |
LL | trait Private<P, R> {
   | ^^^^^^^^^^^^^^^^^^^
note: the lint level is defined here
  --> $DIR/issue-18389.rs:2:9
   |
LL | #![warn(private_bounds)]
   |         ^^^^^^^^^^^^^^

error: aborting due to previous error; 1 warning emitted

For more information about this error, try `rustc --explain E0445`.