OSDN Git Service

Disable -mpreferred-stack-boundary options for Windows.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / pr29906.C
1 // { dg-do compile }
2 // { dg-options "-g -fno-emit-class-debug-always" }
3
4 struct A{
5   typedef int T;
6   virtual ~A();
7 };
8 struct B:public A{
9   using A::T;
10 };