Fix warnings occured during profiledboostrap on
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb28.C
blob89f19d57c996d30c0f83566aa57080c92af37ee1
1 // { dg-do assemble  }
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                 vector< vector<s> > vvs(va.size());
18                 return vvs;
19         }