OSDN Git Service

PR c++/22153
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / defarg1.C
1 class A
2 {
3 public:
4     A(int nBits = ((int)0x8) | ((int)0x4) | ((int)0x2));
5 };