blob: 9b4da4f02ea025f64d02b36221d3325c9e55f9fd [file] [log] [blame]
// PR c++/89565
// { dg-do compile { target c++20 } }
template <auto>
struct N{};
template <N>
struct S {};
template <typename T>
using NS = S<T::value>;