1 // PR c++/60393
2 // { dg-do compile { target c++14 } }
3 
4 void (*f)(auto) + 0; // { dg-error "auto|expected" }
5 
6 struct A
7 {
8   int i;
9 };
10