Chris Lattner | 56a4279 | 2003-09-30 15:40:25 +0000 | [diff] [blame^] | 1 | // 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 | |||||
4 | void foo() { } | ||||
5 | |||||
6 | void bar() { | ||||
7 | void foo(); | ||||
8 | |||||
9 | foo(); | ||||
10 | } |