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