Home
last modified time | relevance | path

Searched refs:NoExceptEvilBool (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.not_fn/
H A Dnot_fn.pass.cpp71 struct NoExceptEvilBool { struct
72 NoExceptEvilBool(NoExceptEvilBool const&) = default;
73 NoExceptEvilBool(NoExceptEvilBool&&) = default;
74 NoExceptEvilBool& operator=(NoExceptEvilBool const& other) = default;
76 constexpr explicit NoExceptEvilBool(bool x) : value(x) {} in NoExceptEvilBool() function
78 friend NoExceptEvilBool operator!(NoExceptEvilBool const& other) noexcept { in operator !()
79 return NoExceptEvilBool{!other.value}; in operator !()
408 using T = NoExceptCallable<NoExceptEvilBool>; in call_operator_noexcept_test()