FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb29.C
blobce8d499703ae821322245e484ff95fa26f491e16
1 //Build don't link: 
2 #include <vector>
4 using namespace std;
6 enum s { S };
7 class a
9         vector<s> vs;
10         friend class b;
12 struct b
14         vector<a> va;
15         operator vector< vector<s> >()
16         {
17                 return vector< vector<s> >(va.size());
18         }