// { dg-do compile { target c++14 } } // { dg-additional-options -fconcepts } template struct A { }; void f(A a) { } // { dg-error "use of .auto. in template argument" } int main() { f(A()); }