blob: 5b12629539b4ede9e8d4ff4818dbf7223e85aed1 [file] [log] [blame]
// PR c++/48707
struct A {
static int a();
};
template<typename X>
struct B: A {
static int const b;
};
template<typename X>
int const B<X>::b=B<X>::a();