summaryrefslogtreecommitdiff
path: root/clang/test/CXX/class/class.local/p1-0x.cpp
blob: 49125f5f9b06235f2300b684871635758d90c7b6 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s 

void f() {
  int x = 3; // expected-note{{'x' declared here}}
  const int c = 2;
  struct C {
    int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing function 'f'}}
    int cc = c;
  };
  (void)[]() mutable {
    int x = 3; // expected-note{{'x' declared here}}
    struct C {
      int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing lambda expression}}
    };
  };
  C();
}