cling/test/Prompt/RecursiveGlobalInits.C
2012-09-05 09:37:39 +00:00

13 lines
338 B
C

// RUN: cat %s | %cling | FileCheck %s
// Checks for infinite recursion when we combine nested calls of process line
// with global initializers.
#include "cling/Interpreter/Interpreter.h"
class MyClass { public: MyClass(){ gCling->process("gCling->getVersion()");} };
MyClass *My = new MyClass(); // CHECK: {{.*Interpreter.*}}
.q