rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/using3.C

13 lines
144 B
C

// { dg-do assemble }
struct A{
A();
};
typedef struct {
A i;
} S;
struct B: S{
using S::S; // { dg-error "" } no such field
};