2023-05-18 11:57:45 +00:00
|
|
|
warning: trait `Private<<Self as Public>::P, <Self as Public>::R>` is more private than the item `Public`
|
2023-06-19 14:06:00 +00:00
|
|
|
--> $DIR/issue-18389.rs:9:1
|
2023-05-18 11:57:45 +00:00
|
|
|
|
|
|
|
|
LL | / pub trait Public: Private<
|
|
|
|
LL | |
|
|
|
|
LL | | <Self as Public>::P,
|
|
|
|
LL | | <Self as Public>::R
|
|
|
|
LL | | > {
|
2023-06-29 13:24:07 +00:00
|
|
|
| |_^ trait `Public` is reachable at visibility `pub`
|
|
|
|
|
|
2023-05-18 11:57:45 +00:00
|
|
|
note: but trait `Private<<Self as Public>::P, <Self as Public>::R>` is only usable at visibility `pub(crate)`
|
2023-06-19 14:06:00 +00:00
|
|
|
--> $DIR/issue-18389.rs:6:1
|
2023-05-18 11:57:45 +00:00
|
|
|
|
|
|
|
|
LL | trait Private<P, R> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2023-06-19 14:06:00 +00:00
|
|
|
= note: `#[warn(private_bounds)]` on by default
|
2023-05-18 11:57:45 +00:00
|
|
|
|
2023-06-19 14:06:00 +00:00
|
|
|
warning: 1 warning emitted
|
2018-07-15 21:11:54 +00:00
|
|
|
|