}
/* endwith */
public void testIteratorNoSuchElementException() {
CharShortCursor/*<>*/ cur = getMap().cursor();
while (cur.moveNext());
try {
cur.key();
fail("cursor.elem() should throw IllegalStateException");
} catch (IllegalStateException expected) {}
}