OSDN Git Service

2004-10-05 Andrew Pinski <pinskia@physics.uc.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / typeof5.C
1 // { dg-options "" }
2
3 int foo;
4
5 template <class T> struct Base {};
6
7 template <class T>
8 struct Derived : public Base<typeof(foo)> {};