1 // PR c++/93248
2 // { dg-do compile { target c++17 } }
3 
4 template <typename T> struct S
5 { template <typename V> S (T, V, long = 0); };
6 using U = decltype(S{0, 4u});
7