blob: 44b8338b0ae33b8c6b5296a5d5836e771fa05f37 [file] [log] [blame]
// PR c++/91754 - Fix template arguments comparison with class NTTP.
// { dg-do compile { target c++20 } }
struct S {};
template<S s>
struct T {
T();
};
template<S s>
T<s>::T() {}
S s;
T<s> t;