blob: ce8d499703ae821322245e484ff95fa26f491e16 [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> >()
{
return vector< vector<s> >(va.size());
}
};