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.

47 lines
1.2 KiB
Text
Raw Normal View History

2022-10-27 21:48:41 +01:00
error: `Self` is not valid at this location
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
| ^^^^
2022-10-27 21:48:41 +01:00
error: `Self` is not valid at this location
--> $DIR/resolve-self-in-impl.rs:15:13
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | impl Tr for S<Self> {}
2022-10-27 21:48:41 +01:00
| ^^^^^^^
2018-08-08 14:28:26 +02:00
2022-10-27 21:48:41 +01:00
error: `Self` is not valid at this location
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
| ^^^^
2022-10-27 21:48:41 +01:00
error: `Self` is not valid at this location
--> $DIR/resolve-self-in-impl.rs:17:6
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | impl S<Self> {}
2022-10-27 21:48:41 +01:00
| ^^^^^^^
2018-08-08 14:28:26 +02:00
2022-02-13 16:27:59 +01:00
error[E0391]: cycle detected when computing trait implemented by `<impl at $DIR/resolve-self-in-impl.rs:18:1: 18:23>`
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
| ^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-13 16:27:59 +01:00
= note: ...which immediately requires computing trait implemented by `<impl at $DIR/resolve-self-in-impl.rs:18:1: 18: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
error: aborting due to 5 previous errors
For more information about this error, try `rustc --explain E0391`.