2022-06-23 15:00:03 +00:00
|
|
|
error: ambiguous `+` in a type
|
2022-07-28 20:18:32 +00:00
|
|
|
--> $DIR/impl-fn-parsing-ambiguities.rs:4:27
|
2022-06-23 15:00:03 +00:00
|
|
|
|
|
|
|
|
LL | fn a() -> impl Fn(&u8) -> impl Debug + '_ {
|
|
|
|
| ^^^^^^^^^^^^^^^ help: use parentheses to disambiguate: `(impl Debug + '_)`
|
|
|
|
|
|
|
|
error: ambiguous `+` in a type
|
2022-07-28 20:18:32 +00:00
|
|
|
--> $DIR/impl-fn-parsing-ambiguities.rs:10:24
|
2022-06-23 15:00:03 +00:00
|
|
|
|
|
|
|
|
LL | fn b() -> impl Fn() -> impl Debug + Send {
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: use parentheses to disambiguate: `(impl Debug + Send)`
|
|
|
|
|
|
|
|
error: higher kinded lifetime bounds on nested opaque types are not supported yet
|
2022-07-28 20:18:32 +00:00
|
|
|
--> $DIR/impl-fn-parsing-ambiguities.rs:4:40
|
2022-06-23 15:00:03 +00:00
|
|
|
|
|
|
|
|
LL | fn a() -> impl Fn(&u8) -> impl Debug + '_ {
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
note: lifetime declared here
|
2022-07-28 20:18:32 +00:00
|
|
|
--> $DIR/impl-fn-parsing-ambiguities.rs:4:19
|
2022-06-23 15:00:03 +00:00
|
|
|
|
|
|
|
|
LL | fn a() -> impl Fn(&u8) -> impl Debug + '_ {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|