aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb29.C
blob: f1017a774a73f2a18e2e38ff3b40b5d7165dc355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//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> >()
        {
                return vector< vector<s> >(va.size());
        }
};