Files
clang-p2996/libcxx/test/input.output/iostream.objects/narrow.stream.objects/cerr.pass.cpp
Howard Hinnant 66dbf0d311 Fixing whitespace problems
llvm-svn: 111758
2010-08-22 00:26:48 +00:00

26 lines
589 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <iostream>
// istream cerr;
#include <iostream>
#include <cassert>
int main()
{
#if 0
std::cerr << "Hello World!\n";
#else
assert(std::cerr.tie() == &std::cout);
assert(std::cerr.flags() & std::ios_base::unitbuf);
#endif // 0
}