// RUN: %clang_cc1 -std=c++2a -x c++ -verify %s
// expected-note@-1{{similar constraint expressions not considered equivalent}}
bool a = false; // expected-note{{template is declared here}}
// expected-note@-1{{similar constraint expression here}}
bool a<T> = true; // expected-error{{variable template partial specialization is not more specialized than the primary template}}
concept C1 = sizeof >= 4;
requires bool b<T> = true;
concept C2 = sizeof > 1 && sizeof <= 8;
bool c = false;
requires ;
static_assert;
static_assert;