diff options
Diffstat (limited to 'lldb/test/stl/main.cpp')
-rw-r--r-- | lldb/test/stl/main.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lldb/test/stl/main.cpp b/lldb/test/stl/main.cpp new file mode 100644 index 00000000000..f294b0e7500 --- /dev/null +++ b/lldb/test/stl/main.cpp @@ -0,0 +1,15 @@ +//===-- 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 <iostream> +#include <string> +int main (int argc, char const *argv[]) +{ + std::string hello_world ("Hello World!"); + std::cout << hello_world << std::endl; +} |