blob: 61f4399e7396e4da4cce509866a24f7a82e91b87 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <fstream>
// template <class charT, class traits = char_traits<charT> >
// class basic_filebuf
// basic_filebuf();
#include <fstream>
#include <cassert>
int main()
{
{
std::filebuf f;
assert(!f.is_open());
}
{
std::wfilebuf f;
assert(!f.is_open());
}
}