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