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

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

17 lines
524 B
Plaintext
Raw Normal View History

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