mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
f2bc9c5997
Fixes #106874
91 lines
4.0 KiB
Plaintext
91 lines
4.0 KiB
Plaintext
error: implementation of `FnOnce` is not general enough
|
|
--> $DIR/ice-106874.rs:8:5
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `FnOnce` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'0 mut V)` must implement `FnOnce<(&mut V,)>`, for some specific lifetime `'0`...
|
|
= note: ...but it actually implements `FnOnce<(&'1 mut V,)>`, for some specific lifetime `'1`
|
|
|
|
error: implementation of `FnOnce` is not general enough
|
|
--> $DIR/ice-106874.rs:8:5
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `FnOnce` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'0 mut V)` must implement `FnOnce<(&mut V,)>`, for some specific lifetime `'0`...
|
|
= note: ...but it actually implements `FnOnce<(&'1 mut V,)>`, for some specific lifetime `'1`
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
error: implementation of `Fn` is not general enough
|
|
--> $DIR/ice-106874.rs:8:7
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `Fn` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'2 mut V)` must implement `Fn<(&'1 mut V,)>`, for any lifetime `'1`...
|
|
= note: ...but it actually implements `Fn<(&'2 mut V,)>`, for some specific lifetime `'2`
|
|
|
|
error: implementation of `FnOnce` is not general enough
|
|
--> $DIR/ice-106874.rs:8:7
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `FnOnce` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'2 mut V)` must implement `FnOnce<(&'1 mut V,)>`, for any lifetime `'1`...
|
|
= note: ...but it actually implements `FnOnce<(&'2 mut V,)>`, for some specific lifetime `'2`
|
|
|
|
error: implementation of `Fn` is not general enough
|
|
--> $DIR/ice-106874.rs:8:7
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `Fn` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'2 mut V)` must implement `Fn<(&'1 mut V,)>`, for any lifetime `'1`...
|
|
= note: ...but it actually implements `Fn<(&'2 mut V,)>`, for some specific lifetime `'2`
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
error: implementation of `FnOnce` is not general enough
|
|
--> $DIR/ice-106874.rs:8:9
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^ implementation of `FnOnce` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'2 mut V)` must implement `FnOnce<(&'1 mut V,)>`, for any lifetime `'1`...
|
|
= note: ...but it actually implements `FnOnce<(&'2 mut V,)>`, for some specific lifetime `'2`
|
|
|
|
error: implementation of `Fn` is not general enough
|
|
--> $DIR/ice-106874.rs:8:9
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `Fn` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'2 mut V)` must implement `Fn<(&'1 mut V,)>`, for any lifetime `'1`...
|
|
= note: ...but it actually implements `Fn<(&'2 mut V,)>`, for some specific lifetime `'2`
|
|
|
|
error: implementation of `FnOnce` is not general enough
|
|
--> $DIR/ice-106874.rs:8:9
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `FnOnce` is not general enough
|
|
|
|
|
= note: closure with signature `fn(&'2 mut V)` must implement `FnOnce<(&'1 mut V,)>`, for any lifetime `'1`...
|
|
= note: ...but it actually implements `FnOnce<(&'2 mut V,)>`, for some specific lifetime `'2`
|
|
|
|
error: higher-ranked subtype error
|
|
--> $DIR/ice-106874.rs:8:41
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^
|
|
|
|
error: higher-ranked subtype error
|
|
--> $DIR/ice-106874.rs:8:41
|
|
|
|
|
LL | A(B(C::new(D::new(move |st| f(st)))))
|
|
| ^
|
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
error: aborting due to 10 previous errors
|
|
|