1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // template <class charT, class traits> class basic_ios
13 // operator unspecified-bool-type() const;
16 #include <type_traits>
19 #include "test_macros.h"
24 assert(static_cast<bool>(ios
) == !ios
.fail());
25 ios
.setstate(std::ios::failbit
);
26 assert(static_cast<bool>(ios
) == !ios
.fail());
27 static_assert((!std::is_convertible
<std::ios
, int>::value
), "");
28 static_assert((!std::is_convertible
<std::ios
const&, int>::value
), "");
29 #if TEST_STD_VER >= 11
30 static_assert(!std::is_convertible
<std::ios
, void*>::value
, "");
31 static_assert(!std::is_convertible
<std::ios
, bool>::value
, "");
33 static_assert(std::is_convertible
<std::ios
, void*>::value
, "");
34 static_assert(std::is_convertible
<std::ios
, bool>::value
, "");
35 (void)(ios
== 0); // SPEC2006 apparently relies on this to compile