blob: f18d0563f9f48e04e623e0404670f5b3664c688f [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;
}