#include class A { private: char *str; public: A(): str("nothing"){}; }; int main() { A a; return 0; }