OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ns / using6.C
1 // { dg-do assemble  }
2 #include <vector>
3
4 namespace csp {
5     using namespace std;
6     struct X {
7         vector<int> v;
8     };
9 }