2016-11-30 22:35:25 +00:00
|
|
|
error[E0404]: expected trait, found type alias `Bar`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/two_files.rs:5:6
|
2016-07-13 21:53:42 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | impl Bar for Baz { }
|
2018-10-22 00:58:34 +00:00
|
|
|
| ^^^ type aliases cannot be used as traits
|
|
|
|
|
|
2020-04-22 18:58:21 +00:00
|
|
|
help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
|
2022-05-31 23:38:03 +00:00
|
|
|
--> $DIR/two_files_data.rs:5:1
|
2020-04-22 18:58:21 +00:00
|
|
|
|
|
2021-03-31 23:37:29 +00:00
|
|
|
LL | trait Bar = dyn Foo;
|
|
|
|
|
|
2016-07-13 21:53:42 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2016-07-13 21:53:42 +00:00
|
|
|
|
2018-03-15 15:13:47 +00:00
|
|
|
For more information about this error, try `rustc --explain E0404`.
|