05ba8a3a07
git-svn-id: http://root.cern.ch/svn/root/trunk@45844 27541ba8-7e3a-0410-8455-c3a389f83636
13 lines
338 B
C
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
|