// PR c++/95497 // { dg-do compile { target c++20 } } template struct A{}; template concept c = requires(T t, A b) // note that A is independent of T { { t += b }; };