PR22354: Add a test that we emit copy-ctors for captures in generic lambdas.

The bug was fixed by r235921.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236254 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Richard Smith 2015-04-30 20:51:03 +00:00
parent b13f5adf46
commit 4e7797e6e1
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -o - %s -std=c++14 | FileCheck %s
template<typename> struct custom_copy_ctor {
custom_copy_ctor() = default;
custom_copy_ctor(custom_copy_ctor const &) {}
};
// CHECK: define {{.*}} @_ZN16custom_copy_ctorIvEC2ERKS0_(
void pr22354() {
custom_copy_ctor<void> cc;
[cc](auto){}(1);
}