Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
inline2.C
blob: b6198be14a6845b4f3f4ab0638d7e2b703c04835 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// { dg-options "-O" }
// Bug: the lang-specific bits of the decl for g aren't being copied when
// inlining.
inline
void
f
()
{
void
g
();
}
void
h
()
{
f
();
// causes compiler segfault -
}