]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/unboxed-closure-sugar-nonexistent-trait.stderr
Rollup merge of #57418 - lqd:collector_query, r=michaelwoerister
[rust.git] / src / test / ui / resolve / unboxed-closure-sugar-nonexistent-trait.stderr
1 error[E0405]: cannot find trait `Nonexist` in this scope
2   --> $DIR/unboxed-closure-sugar-nonexistent-trait.rs:1:8
3    |
4 LL | fn f<F:Nonexist(isize) -> isize>(x: F) {}
5    |        ^^^^^^^^ not found in this scope
6
7 error[E0404]: expected trait, found type alias `Typedef`
8   --> $DIR/unboxed-closure-sugar-nonexistent-trait.rs:6:8
9    |
10 LL | fn g<F:Typedef(isize) -> isize>(x: F) {}
11    |        ^^^^^^^^^^^^^^^^^^^^^^^ type aliases cannot be used as traits
12    |
13    = note: did you mean to use a trait alias?
14
15 error: aborting due to 2 previous errors
16
17 Some errors occurred: E0404, E0405.
18 For more information about an error, try `rustc --explain E0404`.