blob: ff6e7b4438d62a64e881f1dab371a3e299b0ce36 [file] [log] [blame]
Douglas Gregor6b8ef342012-02-01 17:18:19 +00001// RUN: %clang_cc1 -std=c++11 %s -verify
2
3int test_default_args() {
Douglas Gregor656bc622012-02-09 08:26:42 +00004 (void)[](int i = 5, // expected-error{{default arguments can only be specified for parameters in a function declaration}}
Douglas Gregor6b8ef342012-02-01 17:18:19 +00005 int j = 17) {}; // expected-error{{default arguments can only be specified for parameters in a function declaration}}
6}