brintos

brintos / llvm-project-archived public Read only

0
0
Text · 130 B · c0eb29b Raw
11 lines · cpp
1class Tinky {2public:3  int _meh;4  Tinky(int meh) : _meh(meh) {}5};6 7int main(void) {8  Tinky x(12);9  return 0; // break here10}11