blob: 9fa8bb5f3bfad235c2dee1382e4509d49c743f78 [file] [log] [blame]
// Test case for Issue 395:
// https://github.com/typetools/checker-framework/issues/395
import java.util.ArrayList;
public class Issue395 {
Object[] testMethod() {
return new Object[] {new ArrayList<>()};
}
}