summary refs log tree commit diff
path: root/src/test/ui/codemap_tests/two_files.stderr
blob: de2ffc2e5dc1d0e1e704c139262e638096c120d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0404]: expected trait, found type alias `Bar`
  --> $DIR/two_files.rs:5:6
   |
LL | impl Bar for Baz { }
   |      ^^^ 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 | type Bar = dyn Foo;
   | ^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0404`.