1// PR 12762
2
3template <typename> struct A { A() {}};
4typedef A<int> Ac;
5Ac<double> a; // { dg-error "template" }
6