blob: ab4e0b22d6298b0d96736f8ff3026471df57f9de [file] [log] [blame]
//Build don't link:
#include <vector>
using namespace std;
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;
}
};