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