2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr44915.C
blobba7e9660622a2e226d2050356c84ceb74d5e1acc
1 /* { dg-do compile }  */
2 /* { dg-options "-findirect-inlining" } */
4 struct A;
6 typedef void (A::*f_ptr) ();
8 void dummy (f_ptr) { }
10 void call_dummy (f_ptr cb)
12   dummy (cb);