blob: 2d39c90b9ee2221af94905c4b025cd43f0237a3a [file] [log] [blame]
// An intermediate version of the fix for c++/19407 broke this example.
struct A
{
typedef struct { int i; } S;
};
template <class T>
struct B: public A
{
template <class U>
static S f ();
};
template struct B<int>;