xref: /llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.lambda/p2-template-parameter.cpp (revision b6d5c5871857f101cd88e99d115b310abf565bba)
1*b6d5c587SNicolas Lesser // RUN: %clang_cc1 -std=c++17 %s -verify
2*b6d5c587SNicolas Lesser 
3*b6d5c587SNicolas Lesser template<auto> struct Nothing {};
4*b6d5c587SNicolas Lesser 
pr33696()5*b6d5c587SNicolas Lesser void pr33696() {
6*b6d5c587SNicolas Lesser     Nothing<[]() { return 0; }()> nothing; // expected-error{{a lambda expression cannot appear in this context}}
7*b6d5c587SNicolas Lesser }
8