Douglas Gregor | 6b8ef34 | 2012-02-01 17:18:19 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -std=c++11 %s -verify |
2 | |||||
3 | int test_default_args() { | ||||
4 | [](int i = 5, // expected-error{{default arguments can only be specified for parameters in a function declaration}} \ | ||||
5 | // expected-error{{lambda expressions are not supported yet}} | ||||
6 | int j = 17) {}; // expected-error{{default arguments can only be specified for parameters in a function declaration}} | ||||
7 | } |