summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/codegen1.C
blob: c07083a0a79ec5e7c99557e3221c58a3c8141e52 (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
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

int i;

struct S
{
  ~S () 
  {
  }
};

template <class T>
void f (T, S)
{
  i = 0;
}

int main ()
{
  i = 1;
  f (3, S ());
  return i;
}