mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
15 lines
426 B
Plaintext
15 lines
426 B
Plaintext
error: ['a: o, T: o]
|
|
--> $DIR/capture-lifetime-not-in-hir.rs:8:29
|
|
|
|
|
LL | fn foo<'a, T: Bar<'a>>() -> impl Into<T::Assoc> {
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: ['a: o, T: o, 'a: o]
|
|
--> $DIR/capture-lifetime-not-in-hir.rs:14:30
|
|
|
|
|
LL | fn foo2<'a, T: Bar<'a>>() -> impl Into<T::Assoc> + 'a {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|