aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/debug1.C
blob: 9f7bc39a3ba0f13fc701c317e89bc4a124bfded6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:
// Special g++ Options: -g -O -fkeep-inline-functions

class c {
public:
  ~c () { };
};

int
foo (const c& lhs)
{
  c str (lhs);
  return 0;
}