added if without block to increase test coverage of EmptyBlockCheck

This commit is contained in:
Lars Kühne 2002-11-07 20:04:14 +00:00
parent f454aa6d90
commit fc6eea95b8
1 changed files with 7 additions and 0 deletions

View File

@ -166,4 +166,11 @@ class InputSemantic
}
};
}
public void triggerEmptyBlockWithoutBlock()
{
// an if statement without a block to increase test coverage
if (true)
return;
}
}