blob: 6c3130eafa52eb800e7f570c5c2ff67121c5559d [file] [log] [blame]
//Build don't link:
#include <vector.h>
enum s { S };
class a
{
vector<s> vs;
friend class b;
};
struct b
{
vector<a> va;
operator vector< vector<s> >()
{
vector< vector<s> > vvs(va.size());
return vvs;
}
};