// RUN: %clang_cc1 -std=c++2a -x c++ %s -verify
concept C = false; // expected-note 9{{because}}
;
using sf1 = decltype;
using sf2 = decltype; // expected-error{{no matching function}}
using sf3 = decltype; // expected-error{{no matching function}}
using sf4 = decltype; // expected-error{{no matching function}}
;
using gf1 = decltype; // expected-error{{no matching function}}
using gf2 = decltype; // expected-error{{no matching function}}
// Regression (bug #45102): check that instantiation works where there is no
// TemplateTypeParmDecl
using id = T;
constexpr void
static_assert;