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

99 lines
3.1 KiB
Text
Raw Normal View History

2018-12-25 08:56:47 -07:00
error[E0391]: cycle detected when processing `<impl at $DIR/resolve-self-in-impl.rs:14:1: 14:20>`
--> $DIR/resolve-self-in-impl.rs:14:13
2018-08-08 14:28:26 +02:00
|
LL | impl Tr for Self {} //~ ERROR cycle detected
| ^^^^
|
2018-12-25 08:56:47 -07:00
= note: ...which again requires processing `<impl at $DIR/resolve-self-in-impl.rs:14:1: 14:20>`, completing the cycle
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
2018-12-25 08:56:47 -07:00
error[E0391]: cycle detected when processing `<impl at $DIR/resolve-self-in-impl.rs:15:1: 15:23>`
--> $DIR/resolve-self-in-impl.rs:15:15
2018-08-08 14:28:26 +02:00
|
LL | impl Tr for S<Self> {} //~ ERROR cycle detected
| ^^^^
|
2018-12-25 08:56:47 -07:00
= note: ...which again requires processing `<impl at $DIR/resolve-self-in-impl.rs:15:1: 15:23>`, completing the cycle
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
2018-12-25 08:56:47 -07:00
error[E0391]: cycle detected when processing `<impl at $DIR/resolve-self-in-impl.rs:16:1: 16:13>`
--> $DIR/resolve-self-in-impl.rs:16:6
2018-08-08 14:28:26 +02:00
|
LL | impl Self {} //~ ERROR cycle detected
| ^^^^
|
2018-12-25 08:56:47 -07:00
= note: ...which again requires processing `<impl at $DIR/resolve-self-in-impl.rs:16:1: 16:13>`, completing the cycle
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
2018-12-25 08:56:47 -07:00
error[E0391]: cycle detected when processing `<impl at $DIR/resolve-self-in-impl.rs:17:1: 17:16>`
--> $DIR/resolve-self-in-impl.rs:17:8
2018-08-08 14:28:26 +02:00
|
LL | impl S<Self> {} //~ ERROR cycle detected
| ^^^^
|
2018-12-25 08:56:47 -07:00
= note: ...which again requires processing `<impl at $DIR/resolve-self-in-impl.rs:17:1: 17:16>`, completing the cycle
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
2018-12-25 08:56:47 -07:00
error[E0391]: cycle detected when processing `<impl at $DIR/resolve-self-in-impl.rs:18:1: 18:26>`
--> $DIR/resolve-self-in-impl.rs:18:1
2018-08-08 14:28:26 +02:00
|
LL | impl Tr<Self::A> for S {} //~ ERROR cycle detected
| ^^^^^^^^^^^^^^^^^^^^^^
|
2018-12-25 08:56:47 -07:00
= note: ...which again requires processing `<impl at $DIR/resolve-self-in-impl.rs:18:1: 18:26>`, completing the cycle
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`.