// { dg-do compile { target c++20 } } template concept Same = __is_same_as(T, U); template concept C1 = true; template concept C2 = true; C1 auto c1 = 0; C2 auto c2 = 0; Same auto s1 = 'a'; // { dg-error "does not satisfy|is_same" }