1
1
error[E0666]: nested `impl Trait` is not allowed
2
- --> $DIR/nested_impl_trait.rs:5 :56
2
+ --> $DIR/nested_impl_trait.rs:6 :56
3
3
|
4
4
LL | fn bad_in_ret_position(x: impl Into<u32>) -> impl Into<impl Debug> { x }
5
5
| ----------^^^^^^^^^^-
@@ -8,7 +8,7 @@ LL | fn bad_in_ret_position(x: impl Into<u32>) -> impl Into<impl Debug> { x }
8
8
| outer `impl Trait`
9
9
10
10
error[E0666]: nested `impl Trait` is not allowed
11
- --> $DIR/nested_impl_trait.rs:9 :42
11
+ --> $DIR/nested_impl_trait.rs:10 :42
12
12
|
13
13
LL | fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
14
14
| ----------^^^^^^^^^^-
@@ -17,7 +17,7 @@ LL | fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
17
17
| outer `impl Trait`
18
18
19
19
error[E0666]: nested `impl Trait` is not allowed
20
- --> $DIR/nested_impl_trait.rs:13 :37
20
+ --> $DIR/nested_impl_trait.rs:14 :37
21
21
|
22
22
LL | fn bad_in_arg_position(_: impl Into<impl Debug>) { }
23
23
| ----------^^^^^^^^^^-
@@ -26,7 +26,7 @@ LL | fn bad_in_arg_position(_: impl Into<impl Debug>) { }
26
26
| outer `impl Trait`
27
27
28
28
error[E0666]: nested `impl Trait` is not allowed
29
- --> $DIR/nested_impl_trait.rs:18 :44
29
+ --> $DIR/nested_impl_trait.rs:19 :44
30
30
|
31
31
LL | fn bad(x: impl Into<u32>) -> impl Into<impl Debug> { x }
32
32
| ----------^^^^^^^^^^-
@@ -35,19 +35,13 @@ LL | fn bad(x: impl Into<u32>) -> impl Into<impl Debug> { x }
35
35
| outer `impl Trait`
36
36
37
37
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `fn` pointer return
38
- --> $DIR/nested_impl_trait.rs:9 :32
38
+ --> $DIR/nested_impl_trait.rs:10 :32
39
39
|
40
40
LL | fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
41
41
| ^^^^^^^^^^^^^^^^^^^^^
42
42
43
- error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `Fn` trait return
44
- --> $DIR/nested_impl_trait.rs:27:42
45
- |
46
- LL | fn allowed_in_ret_type() -> impl Fn() -> impl Into<u32> {
47
- | ^^^^^^^^^^^^^^
48
-
49
43
error[E0277]: the trait bound `impl Debug: From<impl Into<u32>>` is not satisfied
50
- --> $DIR/nested_impl_trait.rs:5 :46
44
+ --> $DIR/nested_impl_trait.rs:6 :46
51
45
|
52
46
LL | fn bad_in_ret_position(x: impl Into<u32>) -> impl Into<impl Debug> { x }
53
47
| ^^^^^^^^^^^^^^^^^^^^^ the trait `From<impl Into<u32>>` is not implemented for `impl Debug`
@@ -56,15 +50,15 @@ LL | fn bad_in_ret_position(x: impl Into<u32>) -> impl Into<impl Debug> { x }
56
50
= note: required for `impl Into<u32>` to implement `Into<impl Debug>`
57
51
58
52
error[E0277]: the trait bound `impl Debug: From<impl Into<u32>>` is not satisfied
59
- --> $DIR/nested_impl_trait.rs:18 :34
53
+ --> $DIR/nested_impl_trait.rs:19 :34
60
54
|
61
55
LL | fn bad(x: impl Into<u32>) -> impl Into<impl Debug> { x }
62
56
| ^^^^^^^^^^^^^^^^^^^^^ the trait `From<impl Into<u32>>` is not implemented for `impl Debug`
63
57
|
64
58
= help: the trait `Into<U>` is implemented for `T`
65
59
= note: required for `impl Into<u32>` to implement `Into<impl Debug>`
66
60
67
- error: aborting due to 8 previous errors
61
+ error: aborting due to 7 previous errors
68
62
69
63
Some errors have detailed explanations: E0277, E0562, E0666.
70
64
For more information about an error, try `rustc --explain E0277`.
0 commit comments