2018-08-08 14:28:26 +02:00
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:15:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub type Alias = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:5:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | #![deny(private_in_public)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:18:12
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | V1(Priv),
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:20:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | V2 { field: Priv },
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:24:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | const C: Priv = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error[E0446]: private type `types::Priv` in public interface
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:26:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2020-10-17 02:28:11 +03:00
|
|
|
| ------------ `types::Priv` declared as private
|
2018-08-08 14:28:26 +02:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | type Alias = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ can't leak private type
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:27:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn f1(arg: Priv) {}
|
2020-08-12 17:02:14 -04:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:29:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn f2() -> Priv { panic!() }
|
2020-08-12 17:02:14 -04:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:33:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub static ES: Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:35:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub fn ef1(arg: Priv);
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `types::Priv` in public interface (error E0446)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:37:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub fn ef2() -> Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error[E0446]: private type `types::Priv` in public interface
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:41:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2020-10-17 02:28:11 +03:00
|
|
|
| ------------ `types::Priv` declared as private
|
2018-08-08 14:28:26 +02:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | type Alias = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ can't leak private type
|
|
|
|
|
|
|
|
error: private trait `traits::PrivTr` in public interface (error E0445)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/private-in-public-warn.rs:50:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub type Alias<T: PrivTr> = T;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits::PrivTr` in public interface (error E0445)
|
2019-01-29 16:47:30 +01:00
|
|
|
--> $DIR/private-in-public-warn.rs:53:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub trait Tr1: PrivTr {}
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits::PrivTr` in public interface (error E0445)
|
2019-01-29 16:47:30 +01:00
|
|
|
--> $DIR/private-in-public-warn.rs:55:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub trait Tr2<T: PrivTr> {}
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits::PrivTr` in public interface (error E0445)
|
2020-06-27 21:36:35 +01:00
|
|
|
--> $DIR/private-in-public-warn.rs:58:9
|
|
|
|
|
|
|
|
|
LL | type Alias: PrivTr;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits::PrivTr` in public interface (error E0445)
|
2019-01-29 16:47:30 +01:00
|
|
|
--> $DIR/private-in-public-warn.rs:61:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn f<T: PrivTr>(arg: T) {}
|
2020-08-12 17:02:14 -04:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits::PrivTr` in public interface (error E0445)
|
2019-01-29 16:47:30 +01:00
|
|
|
--> $DIR/private-in-public-warn.rs:64:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | impl<T: PrivTr> Pub<T> {}
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits_where::PrivTr` in public interface (error E0445)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:74:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | pub type Alias<T> where T: PrivTr = T;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits_where::PrivTr` in public interface (error E0445)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:78:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | pub trait Tr2<T> where T: PrivTr {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits_where::PrivTr` in public interface (error E0445)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:82:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | fn f<T>(arg: T) where T: PrivTr {}
|
2020-08-12 17:02:14 -04:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `traits_where::PrivTr` in public interface (error E0445)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:86:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | impl<T> Pub<T> where T: PrivTr {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private trait `generics::PrivTr<generics::Pub>` in public interface (error E0445)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:98:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | pub trait Tr1: PrivTr<Pub> {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `generics::Priv` in public interface (error E0446)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:101:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub trait Tr2: PubTr<Priv> {}
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `generics::Priv` in public interface (error E0446)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:103:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub trait Tr3: PubTr<[Priv; 1]> {}
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error: private type `generics::Priv` in public interface (error E0446)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:105:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub trait Tr4: PubTr<Pub<Priv>> {}
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error[E0446]: private type `impls::Priv` in public interface
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:132:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2020-10-17 02:28:11 +03:00
|
|
|
| ------------ `impls::Priv` declared as private
|
2018-08-08 14:28:26 +02:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | type Alias = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ can't leak private type
|
|
|
|
|
|
|
|
error: private type `aliases_pub::Priv` in public interface (error E0446)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:203:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub fn f(arg: Priv) {}
|
2020-08-12 17:02:14 -04:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
|
|
|
error[E0446]: private type `aliases_pub::Priv` in public interface
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:207:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2020-10-17 02:28:11 +03:00
|
|
|
| ------------ `aliases_pub::Priv` declared as private
|
2018-08-08 14:28:26 +02:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | type Check = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ can't leak private type
|
|
|
|
|
|
|
|
error[E0446]: private type `aliases_pub::Priv` in public interface
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:210:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2020-10-17 02:28:11 +03:00
|
|
|
| ------------ `aliases_pub::Priv` declared as private
|
2018-08-08 14:28:26 +02:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | type Check = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ can't leak private type
|
|
|
|
|
|
|
|
error[E0446]: private type `aliases_pub::Priv` in public interface
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:213:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2020-10-17 02:28:11 +03:00
|
|
|
| ------------ `aliases_pub::Priv` declared as private
|
2018-08-08 14:28:26 +02:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | type Check = Priv;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ can't leak private type
|
|
|
|
|
2018-12-16 16:18:45 +03:00
|
|
|
error[E0446]: private type `aliases_pub::Priv` in public interface
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:216:9
|
2018-12-16 16:18:45 +03:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2020-10-17 02:28:11 +03:00
|
|
|
| ------------ `aliases_pub::Priv` declared as private
|
2018-12-16 16:18:45 +03:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | type Check = Priv;
|
2018-12-16 16:18:45 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ can't leak private type
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error: private trait `PrivTr1` in public interface (error E0445)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:246:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | pub trait Tr1: PrivUseAliasTr {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error: private trait `PrivTr1<Priv2>` in public interface (error E0445)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:249:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | pub trait Tr2: PrivUseAliasTr<PrivAlias> {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error: private type `Priv2` in public interface (error E0446)
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:249:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | pub trait Tr2: PrivUseAliasTr<PrivAlias> {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
2019-01-29 16:47:30 +01:00
|
|
|
warning: bounds on generic parameters are not enforced in type aliases
|
|
|
|
--> $DIR/private-in-public-warn.rs:50:23
|
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub type Alias<T: PrivTr> = T;
|
2019-01-29 16:47:30 +01:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
2019-07-16 22:17:38 +02:00
|
|
|
= note: `#[warn(type_alias_bounds)]` on by default
|
2019-10-28 16:58:27 -07:00
|
|
|
help: the bound will not be checked when the type alias is used, and should be removed
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - pub type Alias<T: PrivTr> = T;
|
|
|
|
LL + pub type Alias<T> = T;
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2019-01-29 16:47:30 +01:00
|
|
|
|
|
|
|
warning: where clauses are not enforced in type aliases
|
2021-11-04 16:31:18 +00:00
|
|
|
--> $DIR/private-in-public-warn.rs:74:29
|
2019-01-29 16:47:30 +01:00
|
|
|
|
|
|
|
|
LL | pub type Alias<T> where T: PrivTr = T;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2019-10-28 16:58:27 -07:00
|
|
|
help: the clause will not be checked when the type alias is used, and should be removed
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - pub type Alias<T> where T: PrivTr = T;
|
|
|
|
LL + pub type Alias<T> = T;
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2019-01-29 16:47:30 +01:00
|
|
|
|
2021-11-04 16:31:18 +00:00
|
|
|
error: aborting due to 34 previous errors; 2 warnings emitted
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0446`.
|