aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr239441/Test3.java
blob: c743af7bc3cad7f086cd5b4440744fa98a5b0359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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() {
      }

    };

}