Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
closures
/
issue-99565.rs
blob: 3a30d2ee0349934f7b344f2b705048eaff5d7b96 [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
fn
foo
<
T
,
U
>(
_
:
U
)
{}
fn
bar
()
{
foo
(||
{});
//~ ERROR type annotations needed
}