OSDN Git Service

2010-01-26 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / namespace7.C
1 namespace O {
2   struct SO;
3   namespace I {
4     struct SI;
5     struct O::SO {}; // { dg-error "" }
6   }
7   struct I::SI {};
8 }