// PR c++/107188 // { dg-do compile { target c++20 } } namespace N { template concept C = true; } struct X { N::C auto f() { return 0; } };