]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/codemap_tests/two_files.stderr
Tweak some suggestions in `rustc_resolve`
[rust.git] / src / test / ui / codemap_tests / two_files.stderr
index 65df3f382c04702cfacee92eb4a5f08d6cb8f4c2..de2ffc2e5dc1d0e1e704c139262e638096c120d3 100644 (file)
@@ -1,10 +1,14 @@
 error[E0404]: expected trait, found type alias `Bar`
   --> $DIR/two_files.rs:5:6
    |
-LL | impl Bar for Baz { } //~ ERROR expected trait, found type alias
+LL | impl Bar for Baz { }
    |      ^^^ type aliases cannot be used as traits
    |
-   = note: did you mean to use a trait alias?
+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