blob: 0125bdcbb70706b9b10cfbfc1ab3a7cf1b0a240f [file] [log] [blame]
// PR c++/59638
// { dg-do compile { target c++1y } }
// { dg-options "" }
void (*a)(auto); // { dg-error "template declaration" }
void (*b)(auto) = 0; // { dg-error "template declaration" }
typedef void (*f)(auto); // { dg-error "template declaration" }
struct A
{
int i;
};