Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
inline13.C
blob: bf8e52e01d2fc9a9be98fd2fed76840994f4abff [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Origin: Alexandre Oliva <aoliva@cygnus.com>
struct
foo
{
inline
void
bar
();
foo
();
};
inline
void
foo
::
bar
()
{
switch
(
0
)
{
case
0
:
break
;
}
}
foo
::
foo
()
{
bar
();
}