// RUN: %clang_cc1 -std=c++20 -Wfatal-errors -verify %s template int a; template concept c = a; template concept e = c<>; // must be a fatal error to trigger the crash undefined; // expected-error {{a type specifier is required for all declarations}} template concept g = e; template struct h template struct h;