aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr239441/Test3.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs162/pr239441/Test3.java')
-rw-r--r--tests/bugs162/pr239441/Test3.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/bugs162/pr239441/Test3.java b/tests/bugs162/pr239441/Test3.java
new file mode 100644
index 000000000..c743af7bc
--- /dev/null
+++ b/tests/bugs162/pr239441/Test3.java
@@ -0,0 +1,23 @@
+import java.util.*;
+public class Test3 {
+
+ public Iterator<Integer> iter = new Iterator<Integer>() {
+//
+// @Override
+ public boolean hasNext() {
+ return false;
+ }
+//
+// @Override
+ public Integer next() {
+ return null;
+ }
+//
+// @Override
+ public void remove() {
+ }
+
+ };
+
+}
+