Home | History | Annotate | Download | only in expr.prim.lambda
      1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify
      2 // expected-no-diagnostics
      3 
      4 class NonCopyable {
      5   NonCopyable(const NonCopyable&);
      6 };
      7 
      8 void capture_by_ref(NonCopyable nc, NonCopyable &ncr) {
      9   int array[3];
     10   (void)[&nc] () -> void {};
     11   (void)[&ncr] () -> void {};
     12   (void)[&array] () -> void {};
     13 }
     14