2004-01-07 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / cttiadd1.cc
CommitLineData
a0b3c4fd
JM
1template<class T> T add(T v1, T v2);
2
3void add1()
4{
5 char c;
6 int i;
7 float f;
8
9 c = 'b';
10 i = 3;
11 f = 6.5;
12
13 c = add(c, c);
14 i = add(i, i);
15 f = add(f, f);
16}
This page took 0.484983 seconds and 4 git commands to generate.