Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
nested-binder-print.rs
blob: f97f349fd824359bae7db0d561a396e82035718c [
file
] [
log
] [
blame
] [
edit
]
struct
TwoLt
<
'a, '
b
>(&
'a (), &'
b
());
type
Foo
<
'a> = fn(TwoLt<'
_
,
'
a
>);
fn
foo
()
{
let
y
:
for
<
'a> fn(Foo<'
a
>);
let
x
:
u32
=
y
;
//~^ ERROR mismatched types
}
fn
main
()
{}