1
Fork 0
rust/src/test/ui/resolve/resolve-self-in-impl.stderr

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

99 lines
3 KiB
Text
Raw Normal View History

2020-05-31 16:11:51 +01:00
error[E0391]: cycle detected when computing type of `<impl at $DIR/resolve-self-in-impl.rs:14:1: 14:20>`
2018-12-25 08:56:47 -07:00
--> $DIR/resolve-self-in-impl.rs:14:13
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | impl Tr for Self {}
2018-08-08 14:28:26 +02:00
| ^^^^
|
= note: ...which immediately requires computing type of `<impl at $DIR/resolve-self-in-impl.rs:14:1: 14:20>` again
2019-01-01 19:08:25 +01: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 14:28:26 +02:00
2020-05-31 16:11:51 +01:00
error[E0391]: cycle detected when computing type of `<impl at $DIR/resolve-self-in-impl.rs:15:1: 15:23>`
2018-12-25 08:56:47 -07:00
--> $DIR/resolve-self-in-impl.rs:15:15
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | impl Tr for S<Self> {}
2018-08-08 14:28:26 +02:00
| ^^^^
|
= note: ...which immediately requires computing type of `<impl at $DIR/resolve-self-in-impl.rs:15:1: 15:23>` again
2019-01-01 19:08:25 +01: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 14:28:26 +02:00
2020-05-31 16:11:51 +01:00
error[E0391]: cycle detected when computing type of `<impl at $DIR/resolve-self-in-impl.rs:16:1: 16:13>`
2018-12-25 08:56:47 -07:00
--> $DIR/resolve-self-in-impl.rs:16:6
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | impl Self {}
2018-08-08 14:28:26 +02:00
| ^^^^
|
= note: ...which immediately requires computing type of `<impl at $DIR/resolve-self-in-impl.rs:16:1: 16:13>` again
2019-01-01 19:08:25 +01: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 14:28:26 +02:00
2020-05-31 16:11:51 +01:00
error[E0391]: cycle detected when computing type of `<impl at $DIR/resolve-self-in-impl.rs:17:1: 17:16>`
2018-12-25 08:56:47 -07:00
--> $DIR/resolve-self-in-impl.rs:17:8
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | impl S<Self> {}
2018-08-08 14:28:26 +02:00
| ^^^^
|
= note: ...which immediately requires computing type of `<impl at $DIR/resolve-self-in-impl.rs:17:1: 17:16>` again
2019-01-01 19:08:25 +01: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 14:28:26 +02:00
2020-05-31 16:11:51 +01:00
error[E0391]: cycle detected when computing trait implemented by `<impl at $DIR/resolve-self-in-impl.rs:18:1: 18:26>`
2018-12-25 08:56:47 -07:00
--> $DIR/resolve-self-in-impl.rs:18:1
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | impl Tr<Self::A> for S {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: ...which immediately requires computing trait implemented by `<impl at $DIR/resolve-self-in-impl.rs:18:1: 18:26>` again
2019-01-01 19:08:25 +01: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 14:28:26 +02:00
error: aborting due to 5 previous errors
For more information about this error, try `rustc --explain E0391`.