(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
qualified1.C
struct A {};

struct B : public A
{
    static void foo ();
};

template <typename T> struct C
{
    C() : f(B::foo) {}
    void (*f)();
};

C<int> c;