Fix broken MinGW build of gcc.c
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wreturn-type-10.C
blob2043b6cf21a911c62851c28e6c1cf5fa865c94df
1 // PR c++/59916
2 // { dg-options "-Os -Wreturn-type" }
4 class A {};
6 struct B : virtual public A
8   B();
9   virtual ~B();
12 B::B() {}
13 B::~B() {}