summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/test/class_types/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/class_types/main.cpp b/lldb/test/class_types/main.cpp
index 9ca8e935df9..36885f42913 100644
--- a/lldb/test/class_types/main.cpp
+++ b/lldb/test/class_types/main.cpp
@@ -66,7 +66,7 @@ protected:
int m_b_int;
};
-
+#include <cstdio>
class C : public B
{
public:
@@ -74,6 +74,7 @@ public:
B(ai, bi),
m_c_int(ci)
{
+ printf("Within C::ctor() m_c_int=%d\n", m_c_int);
}
//virtual
OpenPOWER on IntegriCloud