cxx/test/input.output/file.streams/fstreams/fstream.cons/default.pass.cpp
2010-05-11 21:36:01 +00:00

29 lines
596 B
C++

//===----------------------------------------------------------------------===//
//
// 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_fstream
// basic_fstream();
#include <fstream>
#include <type_traits>
int main()
{
{
std::fstream fs;
}
{
std::wfstream fs;
}
}