class test { private: int i; public: test(); }; test::test() { i=0; } int main() { test t; return 0; }