PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wreorder-1.C
blob940ef4a464f7114217a81e967bd15ba0460245d9
1 // { dg-options "-Wreorder -W" }
3 struct S {
4   S ();
5 };
7 struct T {
8   T ();
9 };
11 struct U : virtual public S, virtual public T {
12   U () : T (), S () {}     // { dg-warning "" }
13   U (const U&) : S () {}