1struct S {
2 int x;
3 int y;
4
5 S() : x(123), y(456) {}
6};
7
8int main() {
9 S object;
10 return 0; // break here
11}
12

source code of lldb/test/API/functionalities/data-formatter/language_category_updates/main.cpp