// RUN: %clang_cc1 -std=c++2a -verify %s
constexpr bool is_same_v = false;
constexpr bool is_same_v<T, T> = true;
concept same_as = is_same_v<T, U>;
// expected-note@-1{{because 'is_same_v<int, _Bool>' evaluated to false}}
concept either = ;
;
int