From 6f2913059696064e80328b389e44b199c1af526d Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Mon, 9 Jan 2017 21:23:57 +0000 Subject: Vendor import of lldb trunk r291476: https://llvm.org/svn/llvm-project/lldb/trunk@291476 --- .../lldbsuite/test/python_api/value/empty_class/main.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp (limited to 'packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp') diff --git a/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp b/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp new file mode 100644 index 000000000000..96b203526dbd --- /dev/null +++ b/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp @@ -0,0 +1,16 @@ +//===-- main.cpp ------------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +class Empty {}; + +int main (int argc, char const *argv[]) { + Empty e; + Empty* ep = new Empty; + return 0; // Break at this line +} -- cgit v1.2.3