blob: 74a25110e83f3f8d7ae7b5f08457a520e0bc9853 [file] [log] [blame]
// A test that ensures that stub-based inference correctly handles fields
// with inferred types that are anonymous classes.
import java.util.*;
public class AnonymousClassField {
public static final List foo = new ArrayList<String>() {};
}