Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-17551.rs
blob: a65957ce074efa11b6df24df5a8d3883e7c09d6b [
file
] [
log
] [
blame
] [
edit
]
use
std
::
marker
;
struct
B
<
T
>(
marker
::
PhantomData
<
T
>);
fn
main
()
{
let
foo
=
B
(
marker
::
PhantomData
);
//~ ERROR type annotations needed
let
closure
=
||
foo
;
}