blob: 35b0f56e9590f3f88448872345e8196d3e6fc2fe [file] [log] [blame]
// PR debug/85550
// { dg-do link }
// { dg-options "-O2 -g -fdebug-types-section" }
// { dg-skip-if "AIX DWARF5" { powerpc-ibm-aix* } }
struct A {
int bar () const { return 0; }
};
template <int (A::*foo)() const>
struct B {
};
B<&A::bar> b;
int
main ()
{
}