summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp')
-rw-r--r--packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp b/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp
deleted file mode 100644
index 6aee25c216087..0000000000000
--- a/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-//===-- main.cpp ------------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include <string>
-
-int main()
-{
- std::string helloworld("hello world");
-
- // Ensure std::string copy constructor is present in the binary, as we will
- // use it in an expression.
- std::string other = helloworld;
-
- return 0; // break here
-}