brintos

brintos / llvm-project-archived public Read only

0
0
Text · 131 B · 9051dbb Raw
8 lines · cpp
1class Empty {};2 3int main (int argc, char const *argv[]) {4  Empty e;5  Empty* ep = new Empty;6  return 0; // Break at this line7}8