//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // class ios_base // static const iostate badbit; // static const iostate eofbit; // static const iostate failbit; // static const iostate goodbit = 0; #include #include int main() { assert(std::ios_base::badbit); assert(std::ios_base::eofbit); assert(std::ios_base::failbit); assert ( ( std::ios_base::badbit & std::ios_base::eofbit & std::ios_base::failbit) == 0 ); assert(std::ios_base::goodbit == 0); }