1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify
2 
3 void test_nonaggregate(int i) {
4   auto lambda = [i]() -> void {}; // expected-error{{lambda expressions are not supported yet}} \
5   // expected-note 3{{candidate constructor}}
6   decltype(lambda) foo = { 1 }; // expected-error{{no matching constructor}}
7 }
8