Files
llvm/lldb/test/stl/main.cpp
Johnny Chen 77ca1a4af9 Avoid using hardcoded line number to break on. Use the line_number() utility
function to get the line number to break on during setUp().

llvm-svn: 116358
2010-10-12 22:53:02 +00:00

16 lines
545 B
C++

//===-- 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!"); // Set break point at this line.
std::cout << hello_world << std::endl;
}