OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.mike / debug1.C
1 // Build don't link:
2 // Special g++ Options: -g -O -fkeep-inline-functions
3
4 class c {
5 public:
6   ~c () { };
7 };
8
9 int
10 foo (const c& lhs)
11 {
12   c str (lhs);
13   return 0;
14 }