2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / inline13.C
blobbf8e52e01d2fc9a9be98fd2fed76840994f4abff
1 // { dg-do assemble  }
2 // Origin: Alexandre Oliva <aoliva@cygnus.com>
4 struct foo {
5   inline void bar();
6   foo();
7 };
9 inline void foo::bar() {
10   switch (0) {
11   case 0:
12     break;
13   }
16 foo::foo() {
17   bar();