blob: 7139058cd08917f7504c3314f097d5f9a62433a2 [file] [log] [blame]
Douglas Gregor1b66d8c2012-02-14 00:03:38 +00001// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify
2
3struct DirectInitOnly {
4 explicit DirectInitOnly(DirectInitOnly&);
5};
6
7void direct_init_capture(DirectInitOnly &dio) {
8 [dio] {}();
9}