1 // P0428R2
2 // { dg-do compile }
3 // { dg-options "-Wpedantic" }
4 
5 int j = []<class T>(T t, int i) { return i; }(3, 4);
6 // { dg-warning "lambda templates are only available with" "" { target c++17_down } .-1 }
7 // { dg-warning "lambda expressions only available with" "" { target c++98_only } .-2 }
8 // { dg-error "invalid use of 'auto'" "" { target c++98_only } .-3 }
9