OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[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)> {};