Add test against ROOT-8300, fixed by wrapper improvements by Roman.

This commit is contained in:
Axel Naumann 2016-09-05 12:48:33 +02:00 committed by sftnight
parent ac74ce4efc
commit 31486e784e

View File

@ -46,3 +46,7 @@ step // CHECK: (int) 10
gCling->process("#ifdef __UNDEFINED__\n42\n#endif")
//CHECK: (cling::Interpreter::CompilationResult) (cling::Interpreter::CompilationResult::kSuccess) : (unsigned int) 0
// ROOT-8300
struct B { static void *fgStaticVar; B(){ printf("B::B()\n"); } };
B b; // CHECK: B::B()