FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.eh / crash4.C
blob573149fdd317f26f8cff81711ad8207b33c6acf7
1 // Build don't link:
2 // Origin: Nathan Sidwell <nathan@codesourcery.com>
3 // Special g++ Options: -O2
5 struct A
7   A (int) { }
8   ~A () { }
9   int get () const { return 0; }
12 void f (const A &s) {
13   f (s.get ());