blob: 64123e5d1869146158ea4b6a9e6faa4498f02782 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <ios>
// class ios_base
// static const iostate badbit;
// static const iostate eofbit;
// static const iostate failbit;
// static const iostate goodbit = 0;
#include <ios>
#include <cassert>
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);
}