rust/tests/ui/codemap_tests/two_files.stderr

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

16 lines
433 B
Plaintext
Raw Normal View History

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