blob: 77f6b1f259a93cafdf4bf924bcdc6b28091a73b1 [file] [log] [blame]
Chris Lattner56a42792003-09-30 15:40:25 +00001// The C++ front-end thinks the two foo's are different, the LLVM emitter
2// thinks they are the same. The disconnect causes problems.
3
4void foo() { }
5
6void bar() {
7 void foo();
8
9 foo();
10}