OSDN Git Service

* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / inline9.C
1 // Build don't link:
2 // Origin: Mark Mitchell <mitchell@codesourcery.com>
3 // Special g++ Options: -O2
4
5 inline void f ()
6 {
7   int n;
8   int i[n];
9 }
10
11 void g ()
12 {
13   f ();
14 }
15
16 void h ()
17 {
18   f ();
19 }
20