Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CXX / expr / expr.prim / expr.prim.lambda / p11.cpp
blobd265dd757398e89b08e770010562f060507d9af8
1 // RUN: %clang_cc1 -std=c++11 %s -verify
3 void test_reaching_scope() {
4 int local; // expected-note{{declared here}}
5 static int local_static;
6 (void)[=]() {
7 struct InnerLocal {
8 void member() {
9 (void)[=]() {
10 return local + // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
11 local_static;