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