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