// PR c++/121981 // { dg-do compile { target c++20 } } template concept C = requires { V; }; template concept D = C; template auto W> struct A { }; template T> struct B { }; A<0, 1> a; B<0, int> b;