generates remove method

throwing exception
in Kotlin class extending Iterator
This commit is contained in:
Svetlana Isakova
2012-08-15 19:46:35 +04:00
parent 293452e375
commit 96d99d19f3
7 changed files with 77 additions and 12 deletions

View File

@@ -0,0 +1,5 @@
public class removeInIterator {
public static void bar(java.util.Iterator<Integer> it) {
it.remove();
}
}