use std::marker; struct Heap; struct Vec( marker::PhantomData<(T,A)>); fn main() { let _: Vec; //~^ ERROR missing generics for struct `Vec` }