summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/for1.C
blob: dc33afcdaec4a6cc2904a3699e2559af30ed2a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PR c++/47388
// { dg-do compile }
// { dg-options "-fno-for-scope" }

template <int>
void
foo ()
{
  int i;
  for (i = 0; i < 16; i++)
    ;
  for (int j = 0; j < 16; j++)
    ;
  if (j != 16)
    for (;;)
      ;
}

void
bar ()
{
  foo <0> ();
}