rust/tests/ui/privacy/associated-item-privacy-trait.stderr

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

333 lines
13 KiB
Plaintext
Raw Normal View History

2022-09-21 15:57:30 +00:00
error: type `for<'a> fn(&'a priv_trait::Pub) {<priv_trait::Pub as PrivTr>::method}` is private
--> $DIR/associated-item-privacy-trait.rs:15:21
2018-08-08 12:28:26 +00:00
|
LL | let value = <Pub as PrivTr>::method;
| ^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_trait::mac!();
2021-10-14 18:28:28 +00:00
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
2022-09-21 15:57:30 +00:00
error: type `for<'a> fn(&'a priv_trait::Pub) {<priv_trait::Pub as PrivTr>::method}` is private
--> $DIR/associated-item-privacy-trait.rs:17:9
2018-08-08 12:28:26 +00:00
|
LL | value;
| ^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_trait::mac!();
2021-10-14 18:28:28 +00:00
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
2022-09-21 15:57:30 +00:00
error: type `for<'a> fn(&'a Self) {<Self as PrivTr>::method}` is private
--> $DIR/associated-item-privacy-trait.rs:19:13
2018-08-08 12:28:26 +00:00
|
LL | Pub.method();
| ^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_trait::mac!();
2021-10-14 18:28:28 +00:00
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: associated constant `PrivTr::CONST` is private
--> $DIR/associated-item-privacy-trait.rs:21:9
2018-08-08 12:28:26 +00:00
|
LL | <Pub as PrivTr>::CONST;
| ^^^^^^^^^^^^^^^^^^^^^^ private associated constant
2018-08-08 12:28:26 +00:00
...
LL | priv_trait::mac!();
2021-10-14 18:28:28 +00:00
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: associated type `PrivTr::AssocTy` is private
--> $DIR/associated-item-privacy-trait.rs:23:16
2018-08-08 12:28:26 +00:00
|
LL | let _: <Pub as PrivTr>::AssocTy;
| ^^^^^^^^^^^^^^^^^^^^^^^^ private associated type
2018-08-08 12:28:26 +00:00
...
LL | priv_trait::mac!();
2021-10-14 18:28:28 +00:00
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: associated type `PrivTr::AssocTy` is private
--> $DIR/associated-item-privacy-trait.rs:25:34
2018-08-08 12:28:26 +00:00
|
LL | pub type InSignatureTy = <Pub as PrivTr>::AssocTy;
| ^^^^^^^^^^^^^^^^^^^^^^^^ private associated type
2018-08-08 12:28:26 +00:00
...
LL | priv_trait::mac!();
2021-10-14 18:28:28 +00:00
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: trait `PrivTr` is private
--> $DIR/associated-item-privacy-trait.rs:27:34
2018-08-08 12:28:26 +00:00
|
LL | pub trait InSignatureTr: PrivTr {}
| ^^^^^^ private trait
2018-08-08 12:28:26 +00:00
...
LL | priv_trait::mac!();
2021-10-14 18:28:28 +00:00
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_signature::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:46:21
2018-08-08 12:28:26 +00:00
|
LL | let value = <Pub as PubTr>::method;
| ^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_signature::mac!();
2021-10-14 18:28:28 +00:00
| ---------------------- in this macro invocation
|
= note: this error originates in the macro `priv_signature::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_signature::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:48:9
2018-08-08 12:28:26 +00:00
|
LL | value;
| ^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_signature::mac!();
2021-10-14 18:28:28 +00:00
| ---------------------- in this macro invocation
|
= note: this error originates in the macro `priv_signature::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_signature::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:50:13
2018-08-08 12:28:26 +00:00
|
LL | Pub.method(loop {});
| ^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_signature::mac!();
2021-10-14 18:28:28 +00:00
| ---------------------- in this macro invocation
|
= note: this error originates in the macro `priv_signature::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:67:21
2018-08-08 12:28:26 +00:00
|
LL | let value = <Pub as PubTr>::method::<Priv>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_substs::mac!();
2021-10-14 18:28:28 +00:00
| ------------------- in this macro invocation
|
= note: this error originates in the macro `priv_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:69:9
2018-08-08 12:28:26 +00:00
|
LL | value;
| ^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_substs::mac!();
2021-10-14 18:28:28 +00:00
| ------------------- in this macro invocation
|
= note: this error originates in the macro `priv_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:71:9
2018-08-08 12:28:26 +00:00
|
LL | Pub.method::<Priv>();
| ^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_substs::mac!();
2021-10-14 18:28:28 +00:00
| ------------------- in this macro invocation
|
= note: this error originates in the macro `priv_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:91:21
2018-08-08 12:28:26 +00:00
|
LL | let value = <Pub as PubTr>::method;
| ^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:93:9
2018-08-08 12:28:26 +00:00
|
LL | value;
| ^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:95:21
2018-08-08 12:28:26 +00:00
|
LL | let value = <Pub as PubTr<_>>::method;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:97:9
2018-08-08 12:28:26 +00:00
|
LL | value;
| ^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:99:9
2018-08-08 12:28:26 +00:00
|
LL | Pub.method();
| ^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:102:21
2018-08-08 12:28:26 +00:00
|
LL | let value = <Priv as PubTr<_>>::method;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:104:9
2018-08-08 12:28:26 +00:00
|
LL | value;
| ^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:106:9
2018-08-08 12:28:26 +00:00
|
LL | Priv.method();
| ^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:109:9
2018-08-08 12:28:26 +00:00
|
LL | <Pub as PubTr>::CONST;
| ^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:111:9
2018-08-08 12:28:26 +00:00
|
LL | <Pub as PubTr<_>>::CONST;
| ^^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:113:9
2018-08-08 12:28:26 +00:00
|
LL | <Priv as PubTr<_>>::CONST;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:117:30
2018-08-08 12:28:26 +00:00
|
LL | let _: <Pub as PubTr<_>>::AssocTy;
| ^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:119:17
2018-08-08 12:28:26 +00:00
|
LL | let _: <Priv as PubTr<_>>::AssocTy;
| ^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:122:35
2018-08-08 12:28:26 +00:00
|
LL | pub type InSignatureTy1 = <Pub as PubTr>::AssocTy;
| ^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:124:35
2018-08-08 12:28:26 +00:00
|
LL | pub type InSignatureTy2 = <Priv as PubTr<Pub>>::AssocTy;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: type `priv_parent_substs::Priv` is private
--> $DIR/associated-item-privacy-trait.rs:126:14
2018-08-08 12:28:26 +00:00
|
LL | impl PubTr for u8 {}
| ^^^^^ private type
2018-08-08 12:28:26 +00:00
...
LL | priv_parent_substs::mac!();
2021-10-14 18:28:28 +00:00
| -------------------------- in this macro invocation
|
= note: this error originates in the macro `priv_parent_substs::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: trait `PrivTr` is private
--> $DIR/associated-item-privacy-trait.rs:29:14
|
LL | impl PrivTr for u8 {}
| ^^^^^^ private trait
...
LL | priv_trait::mac!();
| ------------------ in this macro invocation
|
= note: this error originates in the macro `priv_trait::mac` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 30 previous errors
2018-08-08 12:28:26 +00:00