2018-02-07 19:35:35 -08:00
|
|
|
error[E0445]: private trait `Foo` in public interface
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0445.rs:5:1
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2020-10-17 02:28:11 +03:00
|
|
|
LL | trait Foo {
|
|
|
|
| --------- `Foo` declared as private
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | pub trait Bar : Foo {}
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ can't leak private trait
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error[E0445]: private trait `Foo` in public interface
|
2018-12-16 16:18:45 +03:00
|
|
|
--> $DIR/E0445.rs:7:1
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2020-10-17 02:28:11 +03:00
|
|
|
LL | trait Foo {
|
|
|
|
| --------- `Foo` declared as private
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | pub struct Bar2<T: Foo>(pub T);
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ can't leak private trait
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error[E0445]: private trait `Foo` in public interface
|
2018-12-16 16:18:45 +03:00
|
|
|
--> $DIR/E0445.rs:9:1
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2020-10-17 02:28:11 +03:00
|
|
|
LL | trait Foo {
|
|
|
|
| --------- `Foo` declared as private
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | pub fn foo<T: Foo> (t: T) {}
|
2020-08-12 17:02:14 -04:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ can't leak private trait
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0445`.
|