blob: 5cc7b7c1a801e9f3b9bfe0c1f3fa5ab291599495 [file] [log] [blame]
// PR c++/98832
// { dg-do compile { target c++20 } }
template<class T, class U> struct X { U u; };
template<class T> using Y = X<int, T>;
Y y{0};