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();
}