summaryrefslogtreecommitdiff
path: root/lldb/test/expression_command/call-function/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/expression_command/call-function/main.cpp')
-rw-r--r--lldb/test/expression_command/call-function/main.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/lldb/test/expression_command/call-function/main.cpp b/lldb/test/expression_command/call-function/main.cpp
deleted file mode 100644
index 5391e09fcb12..000000000000
--- a/lldb/test/expression_command/call-function/main.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <iostream>
-#include <string>
-
-int main (int argc, char const *argv[])
-{
- std::string str = "Hello world";
- std::cout << str << std::endl;
- std::cout << str.c_str() << std::endl;
- // Please test these expressions while stopped at this line:
-#if 0
- print str
- print str.c_str()
-#endif
- return 0;
-}