Consider the following: ```groovy def <T> void test(Iterable<T> iterable) { Iterator<T> it = iterable.iterator() it.forEachRemaining { e-> } } ``` The type of "e" is shown as Object or E (if STC is enabled). 
Consider the following:
The type of "e" is shown as Object or E (if STC is enabled).