(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
debug/
dwarf2/
pr85550.C
// 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 ()
{
}