// RUN: %clang_cc1 -fsyntax-only -verify -std=c++20 %s // expected-no-diagnostics namespace GH77377 { template concept C = sizeof(T) == sizeof(int); template struct A; template struct A; }