(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
using3.C
// { dg-do assemble  }
struct A{
  A();
};

typedef struct {
  A i;
} S;

struct B: S{
  using S::S;	       // { dg-error "" "" { target { ! c++11 } } } no such field
};