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