@@ -44,6 +44,7 @@ fn in_dyn_Fn_parameter_in_return() -> &'static dyn Fn(impl Debug) { panic!() }
44
44
45
45
// Allowed
46
46
fn in_dyn_Fn_return_in_return ( ) -> & ' static dyn Fn ( ) -> impl Debug { panic ! ( ) }
47
+ //~^ ERROR: type annotations needed
47
48
48
49
// Disallowed
49
50
fn in_impl_Fn_parameter_in_parameters ( _: & impl Fn ( impl Debug ) ) { panic ! ( ) }
@@ -58,9 +59,11 @@ fn in_impl_Fn_return_in_parameters(_: &impl Fn() -> impl Debug) { panic!() }
58
59
fn in_impl_Fn_parameter_in_return ( ) -> & ' static impl Fn ( impl Debug ) { panic ! ( ) }
59
60
//~^ ERROR `impl Trait` is not allowed in the parameters of `Fn` trait bounds
60
61
//~| ERROR nested `impl Trait` is not allowed
62
+ //~| ERROR: type annotations needed
61
63
62
64
// Allowed
63
65
fn in_impl_Fn_return_in_return ( ) -> & ' static impl Fn ( ) -> impl Debug { panic ! ( ) }
66
+ //~^ ERROR: type annotations needed
64
67
65
68
// Disallowed
66
69
fn in_Fn_parameter_in_generics < F : Fn ( impl Debug ) > ( _: F ) { panic ! ( ) }
@@ -77,6 +80,7 @@ fn in_impl_Trait_in_parameters(_: impl Iterator<Item = impl Iterator>) { panic!(
77
80
// Allowed
78
81
fn in_impl_Trait_in_return ( ) -> impl IntoIterator < Item = impl IntoIterator > {
79
82
vec ! [ vec![ 0 ; 10 ] , vec![ 12 ; 7 ] , vec![ 8 ; 3 ] ]
83
+ //~^ ERROR: no function or associated item named `into_vec` found for slice `[_]`
80
84
}
81
85
82
86
// Disallowed
@@ -118,11 +122,13 @@ trait DummyTrait {
118
122
impl DummyTrait for ( ) {
119
123
type Out = impl Debug ;
120
124
//~^ ERROR `impl Trait` in associated types is unstable
125
+ //~| ERROR unconstrained opaque type
121
126
122
127
fn in_trait_impl_parameter ( _: impl Debug ) { }
123
128
// Allowed
124
129
125
130
fn in_trait_impl_return ( ) -> impl Debug { ( ) }
131
+ //~^ ERROR `in_trait_impl_return` has an incompatible type for trait
126
132
// Allowed
127
133
}
128
134
0 commit comments