(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
class-deduction-alias9.C
// 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};