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