p10.cpp revision b326ca8ffbea96f9cc8a457b0f57be880304a6f5
1// RUN: %clang_cc1 -std=c++11 %s -verify
2
3int GlobalVar; // expected-note {{declared here}}
4
5namespace N {
6  int AmbiguousVar; // expected-note {{candidate}}
7}
8int AmbiguousVar; // expected-note {{candidate}}
9using namespace N;
10
11class X0 {
12  int Member;
13
14  static void Overload(int);
15  void Overload();
16  virtual X0& Overload(float);
17
18  void explicit_capture() {
19    int variable; // expected-note {{declared here}}
20    (void)[&Overload] () {}; // expected-error {{does not name a variable}}
21    (void)[&GlobalVar] () {}; // expected-error {{does not have automatic storage duration}}
22    (void)[&AmbiguousVar] () {}; // expected-error {{reference to 'AmbiguousVar' is ambiguous}}
23    (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}}
24  }
25};
26