PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / error56.C
blob3eda04c322523478f69fd89ac35935d721e90eca
1 // Test that the error message mentions the template arguments.
3 struct A
5   template <class T> void f(T);
6   void f();
7 };
9 int main()
11   A().f<1>();                   // { dg-error "f<1>" }