1 // This test currently fails because the C++ front end emits `A' as
2 // the base class called rather than `B' as it ought. At least it
3 // is erroring on the safe side...
11 void A::foo() { } // loose
12 void A::bar() { } // loose
19 void B::foo() { } // keep
21 void _start() __asm__("_start"); // keep
25 B *getme() { return &b; } // keep
32 extern "C" void __main() { }