Clang Project

clang_source_code/test/CXX/expr/expr.prim/expr.prim.lambda/p21.cpp
1// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify
2// expected-no-diagnostics
3
4struct DirectInitOnly {
5  explicit DirectInitOnly(DirectInitOnly&);
6};
7
8void direct_init_capture(DirectInitOnly &dio) {
9  [dio] {}();
10}
11