rust/tests/ui/resolve/issue-3907.stderr

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

19 lines
490 B
Plaintext
Raw Normal View History

error[E0404]: expected trait, found type alias `Foo`
--> $DIR/issue-3907.rs:11:6
|
2019-03-09 12:03:44 +00:00
LL | impl Foo for S {
2018-10-22 00:58:34 +00:00
| ^^^ type aliases cannot be used as traits
|
help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
|
LL | trait Foo = dyn issue_3907::Foo;
|
help: consider importing this trait instead
2017-06-28 06:16:04 +00:00
|
2018-02-24 23:01:39 +00:00
LL | use issue_3907::Foo;
|
2018-03-15 15:13:47 +00:00
error: aborting due to previous error
2018-03-15 15:13:47 +00:00
For more information about this error, try `rustc --explain E0404`.