PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction9.C
blob23c58fd20268d1a00489f2f6cd35b42e01d6ea2e
1 // { dg-options -std=c++17 }
3 namespace N {
4   template <class T>
5   struct A
6   {
7     int i;
8     A(...);
9   };
12 template <class T>
13 N::A(T) -> N::A<T>;       // { dg-error "should have been declared inside .N" }
15 namespace N {
16   template <class T>
17   A(T) -> A<T>;