PR c++/79143
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction10.C
blob8bc4288aa7674baceab01f6dc1d93b90ab043f76
1 // { dg-options -std=c++1z }
3 template <class T>
4 struct A
6   int i;
7   A(...);
8 };
10 template <class T>
11 A(T) -> A<T> { }                // { dg-error "1:function body" }