aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/expr/expr.prim/expr.prim.lambda/p5.cpp
blob: ff6e7b4438d62a64e881f1dab371a3e299b0ce36 (plain)
1
2
3
4
5
6
// RUN: %clang_cc1 -std=c++11 %s -verify

int test_default_args() {
  (void)[](int i = 5,  // expected-error{{default arguments can only be specified for parameters in a function declaration}}
     int j = 17) {}; // expected-error{{default arguments can only be specified for parameters in a function declaration}}
}