1class Empty {};
2
3int main (int argc, char const *argv[]) {
4 Empty e;
5 Empty* ep = new Empty;
6 return 0; // Break at this line
7}
8

source code of lldb/test/API/python_api/value/empty_class/main.cpp