Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / typedef8.C
blob4c1823e87b97b35eec602a2d48a7c444bffb85ac
1 //PR c++ 29024
3 typedef static int a;   // { dg-error "conflicting" }
4 typedef register int b; // { dg-error "conflicting" }
5 typedef extern int c;   // { dg-error "conflicting" }
6 static typedef int a;   // { dg-error "conflicting" }
8 int foo()
10   typedef auto int bar; // { dg-error "conflicting|two or more data types" }