blob: 14fe997854778b99cdbdd742321b39312b0dff61 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -O2 -Wall
// GROUPS passed warnings
class A {
int i;
public:
void funcA(void) {
funcB();
}
// The compiler should not emit a warning about not being
// able to inline this function.
void funcB(void) {
i++;
}
};