1 // PR c++/77914
2 // { dg-do compile { target c++14 } }
3 
4 int
main()5 main ()
6 {
7   auto l = [] <typename T> () {};	// { dg-error "lambda templates are only available with" "" { target c++17_down } }
8   l.operator () <void> ();
9 }
10