// Corrected code @NoWarning("IL_INFINITE_RECURSIVE_LOOP") void methodB() { if (condition) { super.methodB(); } }
void testLoop(String b) { boolean test = evaluate(); if (test) { testLoop("dfdsfsd"); } else { super.testLoop("dsdsd"); } }