aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/constant1.C
blob: a2c5a08d366e55b7869bf298428b60ff4ad00cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/49855

extern void foo(int);

template <class Key, class Value> void Basic() {
  const int kT = 1.5e6;        // <--- causes ICE
  int size = kT*2/3;
  do {
    foo(size);
    size = size * 0.5 - 1;
  } while (size >= 0 );

}