OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / typename8.C
1 // PR c++/18738
2
3 namespace foo {
4   typedef int my_type;
5 }
6
7 template<typename T>
8 struct A {
9   typename foo::my_type bar();
10 };