blob: 87bd8da0a91dadba7685b0e3afca650f6100b970 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++20 -Wpre-c++17-compat %s
// expected-no-diagnostics
namespace GH57362 {
template <int num>
class TemplateClass {};
template <TemplateClass nttp> // ok, no diagnostic expected
void func() {}
}