about summary refs log tree commit diff homepage
path: root/test/CXX/symex/libc++/cout.cpp
blob: 2539b67ff5467603fee030eab8f5197682db5791 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: sh %S/compile_with_libcxx.sh "%llvmgxx" "%s" "%S" "%t" "%klee" "%libcxx_include"

#include <iostream>

int main(int argc, char** args){
  std::cout << "cout" << std::endl;
  std::cerr << "cerr" << std::endl;
  return 0;
}