package integrationTests;
public final class UnreachableStatements
{
void nonBranchingMethodWithUnreachableLines()
{
@SuppressWarnings({"UnusedDeclaration"}) int a = 1;
assert false;
System.gc();
}
void branchingMethodWithUnreachableLines(int a)
{
if (a > 0) {
assert a < 0;
System.gc();
}
System.runFinalization();
}
}