// PR c++/93400 // { dg-do compile { target concepts } } template bool a = true; template concept b = a; template struct f { template friend auto g(c, f); }; auto d = f<1>{}; auto e = f<0>{};