blob: 1da6d4406c9750ef88c32df9bf204a69f6bb7069 [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>
// template <class StateT> class fpos
// void state(stateT s);
#include <ios>
#include <cassert>
int main()
{
std::fpos<int> f;
f.state(3);
assert(f.state() == 3);
}