OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / typename6.C
1 struct O {
2   template <typename T>
3   struct I {
4     I (int);
5   };
6 };
7
8 template <typename T>
9 void f() {
10   typename ::O::I<int>(3);
11 }