aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/member.C
blob: 69228334ff6d14fcc1b33b6baed50514d6188f5c (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
26
27
28
// { dg-do compile }


class BIXSet{
int z[4];
public:
void f(BIXSet &other){
z[0]=other.z[0];
}

};

class TestCase2{
public:
BIXSet a,b;

public:
void run(void){
BIXSet x,y;
process(0,x,y);
}

protected:
template<class BS> void process(const int d,BS &en,BS &lb){
a.f(en);b.f(lb);
}

};