blob: 12a8e945880936ecb9fdb6e35734e276b3900ae1 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <ios>
//
// class ios_base
// {
// public:
// typedef T2 open_mode;
// };
#include <strstream>
#include <cassert>
int main()
{
std::strstream::open_mode b = std::strstream::app;
assert(b == std::ios::app);
}