2016-11-30 16:35:25 -06:00
|
|
|
error[E0404]: expected trait, found type alias `Bar`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/two_files.rs:5:6
|
2016-07-13 16:53:42 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | impl Bar for Baz { }
|
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
|
2022-05-31 18:38:03 -05:00
|
|
|
--> $DIR/two_files_data.rs:5:1
|
2020-04-22 13:58:21 -05:00
|
|
|
|
|
2021-03-31 18:37:29 -05:00
|
|
|
LL | trait Bar = dyn Foo;
|
|
|
|
|
|
2016-07-13 16:53:42 -05:00
|
|
|
|
2018-03-15 10:13:47 -05:00
|
|
|
error: aborting due to previous error
|
2016-07-13 16:53:42 -05:00
|
|
|
|
2018-03-15 10:13:47 -05:00
|
|
|
For more information about this error, try `rustc --explain E0404`.
|