aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C
blob: 79902de6993ffe900124926dc9d640c9600df93c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do run  }
template <class X> class TC {
public:
  X aaa;
  static X sss;
  TC(X a) {aaa = a; }
  TC(X a, X s) {aaa = a; sss = s; }
  void sz(X s) { sss = s; }
  void syy(X syarg) { sss = syarg; }
};

template <> long TC<long>::sss = 0;
template <> float TC<float>::sss = 0.0;

TC<long> xjj(1,2);

int main(int,char**) {
  TC<float> xff(9.9,3.14);
  xjj.sz(123);
  xff.sz(2.71828);
  return 0;
}