// PR c++/93595 // { dg-do compile { target c++20 } } template struct bad { template static void f(T) { } }; int main() { bad<0>::f(0); }