package com; import java.util.*; public class Test { public static void main(String [] argv) { new Test().foo(); } Set intsSet = new HashSet(); public Set foo() { return intsSet; } }