view gcc/testsuite/g++.dg/cpp1z/class-deduction71.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

// PR c++/93248
// { dg-do compile { target c++17 } }

template <typename T> struct S
{ template <typename V> S (T, V, long = 0); };
using U = decltype(S{0, 4u});