typedef4.C   [plain text]


// PR c++/27572
// { dg-do compile }

template<typedef> void foo();  // { dg-error "no type|typedef declaration|template" }

void bar()
{
  foo<int>();                  // { dg-error "matching" }
}