p21.cpp 219 B

12345678910
  1. // RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify
  2. // expected-no-diagnostics
  3. struct DirectInitOnly {
  4. explicit DirectInitOnly(DirectInitOnly&);
  5. };
  6. void direct_init_capture(DirectInitOnly &dio) {
  7. [dio] {}();
  8. }