// RUN: %clang_cc1 -std=c++2a -verify %s
// ... return type shall be cv bool ...
;
;
constexpr bool
static_assert;
static_assert; // expected-error {{failed}}
// x == y -> y == x
static_assert;
static_assert; // expected-error {{failed}}
// x != y -> !(x == y)
static_assert; // expected-error {{failed}}
static_assert;
// x != y -> !(y == x)
static_assert; // expected-error {{failed}}
static_assert;