remove a dead bool.
[llvm/avr.git] / test / FrontendC++ / 2003-09-30-NestedFunctionDecl.cpp
blob94c11998963babd33e348524bc40866f980b8cab
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
3 // The C++ front-end thinks the two foo's are different, the LLVM emitter
4 // thinks they are the same. The disconnect causes problems.
6 void foo() { }
8 void bar() {
9 void foo();
11 foo();