PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / pr54442.C
bloba489565616e618f3037bfce2ab8a7f403f4553b3
1 /* { dg-do compile } */
3 struct S
5   void s (int) const throw ();
6   void s (int) throw ();
7 };
9 typedef int index_t;
11 void (S::*f) (index_t)       = &S::s;
12 void (S::*g) (index_t) const = &S::s;