Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / template / typedef7.C
blob2d39c90b9ee2221af94905c4b025cd43f0237a3a
1 // An intermediate version of the fix for c++/19407 broke this example.
3 struct A
5   typedef struct { int i; } S;
6 };
8 template <class T>
9 struct B: public A
11   template <class U>
12   static S f ();
15 template struct B<int>;