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.

63 lines
1.7 KiB
Plaintext
Raw Normal View History

2022-10-27 16:18:26 -05: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 07:28:26 -05:00
|
LL | impl Self {}
| ^^^^
2022-10-27 16:18:26 -05:00
|
= note: replace `Self` with a different type
2018-08-08 07:28:26 -05:00
2022-10-27 16:18:26 -05: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 07:28:26 -05:00
|
LL | impl S<Self> {}
| ^^^^
2022-10-27 16:18:26 -05:00
|
= note: replace `Self` with a different type
2018-08-08 07:28:26 -05:00
2022-10-27 16:18:26 -05:00
error: `Self` is not valid in the self type of an impl block
--> $DIR/resolve-self-in-impl.rs:18:7
2018-08-08 07:28:26 -05:00
|
LL | impl (Self, Self) {}
| ^^^^ ^^^^
2022-10-27 16:18:26 -05:00
|
= note: replace `Self` with a different type
2018-08-08 07:28:26 -05:00
2022-10-27 16:18:26 -05: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 07:28:26 -05:00
|
LL | impl Tr for Self {}
| ^^^^
2022-10-27 16:18:26 -05: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:15:15
2022-10-27 16:18:26 -05:00
|
LL | impl Tr for S<Self> {}
| ^^^^
2022-10-27 16:18:26 -05:00
|
= note: replace `Self` with a different type
2018-08-08 07:28:26 -05:00
2022-10-27 16:18:26 -05:00
error[E0391]: cycle detected when computing trait implemented by `<impl at $DIR/resolve-self-in-impl.rs:19:1: 19:23>`
--> $DIR/resolve-self-in-impl.rs:19:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | impl Tr<Self::A> for S {}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^
|
2022-10-27 16:18:26 -05: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 12:08:25 -06: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() {}
| |____________^
2018-08-08 07:28:26 -05:00
2022-10-27 16:18:26 -05:00
error: aborting due to 6 previous errors
2018-08-08 07:28:26 -05:00
For more information about this error, try `rustc --explain E0391`.