summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-61358.C
blob: 21ce741524a1cd0eb3f7e3805fcfdaf6f298820a (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }

int main() {
  goto doit;
  []() { doit: ; };
  doit: ;
}