Sign in
rust
/
rust
/
8f0ca1d2536701a13f2df03ce2db2e235f8a3f75
/
.
/
tests
/
ui
/
impl-trait
/
fallback_inference.rs
blob: 98f0bd1af2813174a9a2055499adffc91c089249 [
file
]
use
std
::
marker
::
PhantomData
;
fn
weird
()
->
PhantomData
<
impl
Sized
>
{
PhantomData
//~ ERROR type annotations needed
}
fn
main
()
{}