1 // PR c++/83947
2 // { dg-do compile { target c++14 } }
3 
4 auto f ();
5 template < int > auto g (f);	// { dg-error "before deduction" }
6 auto h = g < 0 > ();
7