1 2 3 4 5 6 7
use std::marker::PhantomData; fn weird() -> PhantomData<impl Sized> { PhantomData //~ ERROR type annotations needed } fn main() {}