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