rust/tests/ui/resolve/unboxed-closure-sugar-nonexistent-trait.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
746 B
Plaintext
Raw Normal View History

error[E0405]: cannot find trait `Nonexist` in this scope
2018-12-25 15:56:47 +00:00
--> $DIR/unboxed-closure-sugar-nonexistent-trait.rs:1:8
|
2018-02-23 00:42:32 +00:00
LL | fn f<F:Nonexist(isize) -> isize>(x: F) {}
| ^^^^^^^^ not found in this scope
error[E0404]: expected trait, found type alias `Typedef`
2018-12-25 15:56:47 +00:00
--> $DIR/unboxed-closure-sugar-nonexistent-trait.rs:6:8
|
2018-02-23 00:42:32 +00:00
LL | fn g<F:Typedef(isize) -> isize>(x: F) {}
2018-10-22 00:58:34 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^ type aliases cannot be used as traits
|
help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
|
LL | trait Typedef = isize;
|
2018-03-15 15:13:47 +00:00
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0404, E0405.
2018-03-15 15:13:47 +00:00
For more information about an error, try `rustc --explain E0404`.