llvm-project/clang/test/CodeGenCXX/copy-in-cplus-object.cpp
Fariborz Jahanian 64176c2c97 For C++ copied in objects, use copy constructors in
setting up block's descriptor. This is on going work to
support c++ specific issues in setting up blocks
various APIs.

llvm-svn: 105469
2010-06-04 16:10:00 +00:00

19 lines
374 B
C++

// RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
struct TestObject
{
TestObject(const TestObject& inObj);
TestObject();
TestObject& operator=(const TestObject& inObj);
int version() const;
};
void testRoutine() {
TestObject one;
int (^V)() = ^{ return one.version(); };
}
// CHECK: call void @_ZN10TestObjectC1ERKS_