aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-shadow1.C
blob: fcfc39e3eb65b89eb7344e9ab20780f0b4a65a2b (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/55357
// { dg-do compile { target c++11 } }
// { dg-options "-Wshadow" }

int main() {
  int x = 1;			  // { dg-message "shadowed" }
  auto const lambda = [](int x) { // { dg-warning "shadows" }
    return x;
  };
}