view gcc/testsuite/g++.dg/template/member.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { 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);
}

};