2017-01-11 16:18:08 -06:00
|
|
|
error[E0405]: cannot find trait `Nonexist` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-sugar-nonexistent-trait.rs:1:8
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f<F:Nonexist(isize) -> isize>(x: F) {}
|
2017-03-08 13:15:12 -06:00
|
|
|
| ^^^^^^^^ not found in this scope
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0404]: expected trait, found type alias `Typedef`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-sugar-nonexistent-trait.rs:6:8
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn g<F:Typedef(isize) -> isize>(x: F) {}
|
2018-10-21 19:58:34 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ type aliases cannot be used as traits
|
|
|
|
|
|
2020-04-22 13:58:21 -05:00
|
|
|
help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
|
|
|
|
|
|
2021-03-31 18:37:29 -05:00
|
|
|
LL | trait Typedef = isize;
|
|
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2018-03-15 10:13:47 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0404, E0405.
|
2018-03-15 10:13:47 -05:00
|
|
|
For more information about an error, try `rustc --explain E0404`.
|