OSDN Git Service

* g++.old-deja/g++.brendan/scope5.C: Changed "Class" to "Klasse".
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / using2.C
1 namespace N {
2   template <typename T>
3   struct foo {};
4 }
5
6 int main() {
7   using N::foo<double>; // { dg-error "" }
8 }