diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp b/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp index aa4013685171c..588a3a8e01fea 100644 --- a/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp +++ b/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp @@ -1,5 +1,8 @@ +class Foo::Bar { int i = 123; }; + int main(int argc, const char * argv[]) { IntContainer test(42); + Foo::Bar bar; return 0; // break here } |