1 2 3 4 5 6 7 8 9 10
class Tinky { public: int _meh; Tinky(int meh) : _meh(meh) {} }; int main(void) { Tinky x(12); return 0; // break here }