1// Build don't link:
2// Origin: Nathan Sidwell <nathan@codesourcery.com>
3// Special g++ Options: -O2
4
5struct A
6{
7  A (int) { }
8  ~A () { }
9  int get () const { return 0; }
10};
11
12void f (const A &s) {
13  f (s.get ());
14}
15