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