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

17 lines
524 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0411]: expected trait, found self type `Self`
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-self-in-impl-2.rs:4:6
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | impl Self for S {}
2018-11-30 09:41:32 -06:00
| ^^^^ `Self` is only available in impls, traits, and type definitions
2018-08-08 07:28:26 -05:00
error[E0405]: cannot find trait `N` in `Self`
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-self-in-impl-2.rs:5:12
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | impl Self::N for S {}
2018-08-08 07:28:26 -05:00
| ^ not found in `Self`
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0405, E0411.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0405`.