2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / debug / pr54831.C
blob8e7312061a022332108e4e2bdb909477d0a3148e
1 // PR debug/54831
2 // { dg-do compile }
3 // { dg-options "-O -fno-split-wide-types -g" }
5 struct S
7   int m1();
8   int m2();
9 };
11 typedef void (S::*mptr) ();
13 mptr gmp;
14 void bar (mptr f);
16 void foo (mptr f)
18   f = gmp;
19   bar (f);