OSDN Git Service

Fix typo in previous commit.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / inherit / namespace-as-base.C
1 // { dg-do compile }
2
3 namespace Out {
4   namespace In {
5   }
6 }
7
8 class Class : public Out::In {  // { dg-error ".*" "" }
9 };