rust/tests/ui/impl-trait/impl-fn-parsing-ambiguities.stderr

28 lines
987 B
Plaintext
Raw Normal View History

error: ambiguous `+` in a type
2022-07-28 15:18:32 -05:00
--> $DIR/impl-fn-parsing-ambiguities.rs:4:27
|
LL | fn a() -> impl Fn(&u8) -> impl Debug + '_ {
| ^^^^^^^^^^^^^^^ help: use parentheses to disambiguate: `(impl Debug + '_)`
error: ambiguous `+` in a type
2024-03-19 15:58:37 -05:00
--> $DIR/impl-fn-parsing-ambiguities.rs:10:24
|
LL | fn b() -> impl Fn() -> impl Debug + Send {
| ^^^^^^^^^^^^^^^^^ help: use parentheses to disambiguate: `(impl Debug + Send)`
error[E0657]: `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
2022-07-28 15:18:32 -05:00
--> $DIR/impl-fn-parsing-ambiguities.rs:4:40
|
LL | fn a() -> impl Fn(&u8) -> impl Debug + '_ {
| ^^
|
note: lifetime declared here
2022-07-28 15:18:32 -05:00
--> $DIR/impl-fn-parsing-ambiguities.rs:4:19
|
LL | fn a() -> impl Fn(&u8) -> impl Debug + '_ {
| ^
2024-03-19 15:58:37 -05:00
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0657`.