PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction30.C
blobd0ef5f9e060f750c3eb121c9a21c7193c9d5d275
1 // { dg-options -std=c++17 }
3 template <class T = void> struct A { };
5 A a{};
6 A a2;