Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
56a4279d616e084ced2cf5e09fd69e371b6382a5
/
.
/
test
/
C++Frontend
/
2003-09-30-NestedFunctionDecl.cpp
blob: 77f6b1f259a93cafdf4bf924bcdc6b28091a73b1 [
file
] [
log
] [
blame
]
// The C++ front-end thinks the two foo's are different, the LLVM emitter
// thinks they are the same. The disconnect causes problems.
void
foo
()
{
}
void
bar
()
{
void
foo
();
foo
();
}