/cp
[official-gcc.git] / gcc / testsuite / g++.dg / parse / pr29234.C
blobd2dc735f226bf16e2955c584c6ba4f0d4310f148
1 // PR c++/29234
3 struct S { void operator()(); };
5 void foo ()
7   ( S()() );
10 struct C { void operator[](C); };
12 void bar ()
14   C x;
15   ( C()[x] );