rust/tests/ui/resolve/resolve-self-in-impl.stderr

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

64 lines
1.9 KiB
Plaintext
Raw Normal View History

2022-10-27 21:18:26 +00:00
error: `Self` is not valid in the self type of an impl block
--> $DIR/resolve-self-in-impl.rs:14:13
2018-08-08 12:28:26 +00:00
|
LL | impl Tr for Self {}
| ^^^^
2022-10-27 21:18:26 +00:00
|
= note: replace `Self` with a different type
2018-08-08 12:28:26 +00:00
2022-10-27 21:18:26 +00:00
error: `Self` is not valid in the self type of an impl block
--> $DIR/resolve-self-in-impl.rs:15:15
2018-08-08 12:28:26 +00:00
|
LL | impl Tr for S<Self> {}
| ^^^^
2022-10-27 21:18:26 +00:00
|
= note: replace `Self` with a different type
2018-08-08 12:28:26 +00:00
2022-10-27 21:18:26 +00:00
error: `Self` is not valid in the self type of an impl block
--> $DIR/resolve-self-in-impl.rs:16:6
2018-08-08 12:28:26 +00:00
|
LL | impl Self {}
| ^^^^
2022-10-27 21:18:26 +00:00
|
= note: replace `Self` with a different type
2018-08-08 12:28:26 +00:00
2022-10-27 21:18:26 +00:00
error: `Self` is not valid in the self type of an impl block
--> $DIR/resolve-self-in-impl.rs:17:8
2018-08-08 12:28:26 +00:00
|
LL | impl S<Self> {}
| ^^^^
2022-10-27 21:18:26 +00:00
|
= note: replace `Self` with a different type
error: `Self` is not valid in the self type of an impl block
--> $DIR/resolve-self-in-impl.rs:18:7
2022-10-27 21:18:26 +00:00
|
LL | impl (Self, Self) {}
| ^^^^ ^^^^
2022-10-27 21:18:26 +00:00
|
= note: replace `Self` with a different type
2018-08-08 12:28:26 +00:00
2023-07-13 02:59:01 +00:00
error[E0391]: cycle detected when computing trait implemented by `<impl at $DIR/resolve-self-in-impl.rs:19:1: 19:23>`
2022-10-27 21:18:26 +00:00
--> $DIR/resolve-self-in-impl.rs:19:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | impl Tr<Self::A> for S {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^
|
2022-10-27 21:18:26 +00:00
= note: ...which immediately requires computing trait implemented by `<impl at $DIR/resolve-self-in-impl.rs:19:1: 19:23>` again
2019-01-01 18:08:25 +00:00
note: cycle used when collecting item types in top-level module
--> $DIR/resolve-self-in-impl.rs:1:1
|
LL | / #![feature(associated_type_defaults)]
LL | |
LL | | struct S<T = u8>(T);
LL | | trait Tr<T = u8> {
... |
LL | |
LL | | fn main() {}
| |____________^
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
2018-08-08 12:28:26 +00:00
2022-10-27 21:18:26 +00:00
error: aborting due to 6 previous errors
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0391`.