2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / inline5.C
blobdd61ee6bc012e824633cea4795c4a9ec48ec042e
1 // PR c++/12519
3 // { dg-do compile }
4 // { dg-options "-O" }
6 struct A
8     ~A();
9 };
11 inline const A foo()
13     A a;
14     return a;
17 A bar()
19     return foo();