summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/formatters/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/python_api/formatters/main.cpp')
-rw-r--r--lldb/test/python_api/formatters/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/test/python_api/formatters/main.cpp b/lldb/test/python_api/formatters/main.cpp
index cf7e4c08ef8..f21c956144c 100644
--- a/lldb/test/python_api/formatters/main.cpp
+++ b/lldb/test/python_api/formatters/main.cpp
@@ -26,6 +26,9 @@ struct CCC
int a, b, c;
};
+struct Empty1 { void *data; };
+struct Empty2 { void *data; };
+
int main(int argc, char const *argv[]) {
JustAStruct foo;
@@ -49,5 +52,8 @@ int main(int argc, char const *argv[]) {
CCC ccc = {111, 222, 333};
+ Empty1 e1;
+ Empty2 e2;
+
return 0; // Set break point at this line.
}
OpenPOWER on IntegriCloud