blob: ff37d872a7824b833139632865123bf2250e95b2 [file] [log] [blame]
class Parent {
public:
Parent() {}
Parent( char *s ) {}
};
class Child : public Parent { // ERROR - called
};
int main() {
Child c( "String initializer" ); // ERROR - bad
return 0;
}