rust/tests/ui/issues/issue-18389.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0445]: private trait `Private<<Self as Public>::P, <Self as Public>::R>` in public interface
--> $DIR/issue-18389.rs:14:1
2018-07-15 16:11:54 -05:00
|
LL | trait Private<P, R> {
| ------------------- `Private<<Self as Public>::P, <Self as Public>::R>` declared as private
...
2018-07-15 16:11:54 -05:00
LL | / pub trait Public: Private<
2019-03-09 06:03:44 -06:00
LL | |
2018-07-15 16:11:54 -05:00
LL | | <Self as Public>::P,
LL | | <Self as Public>::R
2022-02-13 09:27:59 -06:00
LL | | > {
2018-07-15 16:11:54 -05:00
| |_^ can't leak private trait
2023-05-18 06:57:45 -05:00
warning: trait `Private<<Self as Public>::P, <Self as Public>::R>` is more private than the item `Public`
|
note: trait `Public` is reachable at visibility `pub`
--> $DIR/issue-18389.rs:14:1
2023-05-18 06:57:45 -05:00
|
LL | / pub trait Public: Private<
LL | |
LL | | <Self as Public>::P,
LL | | <Self as Public>::R
LL | | > {
| |_^
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
2023-05-18 06:57:45 -05:00
|
LL | trait Private<P, R> {
| ^^^^^^^^^^^^^^^^^^^
note: the lint level is defined here
--> $DIR/issue-18389.rs:2:9
2023-05-18 06:57:45 -05:00
|
LL | #![warn(private_bounds)]
| ^^^^^^^^^^^^^^
error: aborting due to previous error; 1 warning emitted
2018-07-15 16:11:54 -05:00
For more information about this error, try `rustc --explain E0445`.