aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr113861/Test.java
blob: d9316d09bd0477ea556b474dad8500646525c512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com;
import java.util.*;

public class Test {

  public static void main(String [] argv) {
    new Test().foo();
  }

  Set<Integer> intsSet = new HashSet<Integer>();

  public Set<Integer> foo() {
    return intsSet;
  }
}