llvm-project/clang/test/CodeGenCXX/copy-in-cplus-object.cpp
Fariborz Jahanian ea882cd92e Build AST for copy-construction of copied-in
class object in blocks and carry it to IRGen.

llvm-svn: 105487
2010-06-04 21:35:44 +00:00

19 lines
390 B
C++

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