]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/issue-3907.stderr
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / resolve / issue-3907.stderr
1 error[E0404]: expected trait, found type alias `Foo`
2   --> $DIR/issue-3907.rs:11:6
3    |
4 LL | impl Foo for S {
5    |      ^^^ type aliases cannot be used as traits
6    |
7 help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
8    |
9 LL | trait Foo = dyn issue_3907::Foo;
10    |
11 help: consider importing this trait instead
12    |
13 LL | use issue_3907::Foo;
14    |
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0404`.