aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/using6.C
blob: b770950cc642ee4c56984d3893857254e2835390 (plain)
1
2
3
4
5
6
7
8
9
//Build don't link:
#include <vector>

namespace csp {
    using namespace std;
    struct X {
	vector<int> v;
    };
}