blob: 0d4516d555670f2b09d266a1cfc64c7da152384f [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.
//
//===----------------------------------------------------------------------===//
// <istream>
// template <class charT, class traits = char_traits<charT> >
// class basic_istream;
// basic_istream<charT,traits>& operator>>(basic_ios<charT,traits>&
// (*pf)(basic_ios<charT,traits>&));
#include <istream>
#include <cassert>
int f_called = 0;
template <class CharT>
std::basic_ios<CharT>&
f(std::basic_ios<CharT>& is)
{
++f_called;
return is;
}
int main()
{
{
std::istream is((std::streambuf*)0);
is >> f;
assert(f_called == 1);
}
}