28 lines
781 B
C
28 lines
781 B
C
//------------------------------------------------------------------------------
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
//
|
|
// This file is dual-licensed: you can choose to license it under the University
|
|
// of Illinois Open Source License or the GNU Lesser General Public License. See
|
|
// LICENSE.TXT for details.
|
|
//------------------------------------------------------------------------------
|
|
|
|
// RUN: cat %s | %cling | FileCheck %s
|
|
|
|
// XFAIL:*
|
|
// The test exposes a weakness in the declaration extraction of types. As
|
|
// reported in issue ROOT-5248.
|
|
|
|
extern "C" int printf(const char* fmt, ...);
|
|
|
|
class MyClass;
|
|
extern MyClass* my;
|
|
class MyClass {
|
|
public: MyClass* getMyClass() {
|
|
printf("Works!\n");
|
|
return 0;
|
|
}
|
|
} cl;
|
|
MyClass* my = cl.getMyClass();
|
|
.q
|
|
//CHECK: Works!
|