aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/scope3.C
blob: cf784303171b4bc7c792dc7c5108fe2ac97cf21b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Build don't link: 
// GROUPS passed scoping
// This is fixed when NEW_CLASS_SCOPING is on.

template<class T>
class ArrayG {
public:
    ArrayG();
protected:
    const unsigned INITIAL;
    T* array;			 
};

template<class T>
ArrayG<T>::ArrayG():
array(new T[INITIAL])
{ }

struct X {
    struct Correspondence {
	int i;
    };

    void fill(ArrayG<Correspondence>& a);
};