Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error23.C
blob9c19b562c6daf0de4d0a6a211d9a73d2ff8c362c
1 // { dg-options "-fshow-column -ansi -pedantic-errors -Wno-long-long" }
2 // PR c++/19149
4 struct QChar {
5   QChar( char c );
6   QChar( const QChar& c );
7   //following column number is not accurate enough but will make it for now
8   static const ; // { dg-error "10:declaration does not declare anything" }
9 };