OSDN Git Service

* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / using3.C
1 // Build don't link:
2 struct A{
3   A();
4 };
5
6 typedef struct {
7   A i;
8 } S;
9
10 struct B: S{
11   using S::S;        // ERROR - no such field
12 };