blob: cf08e44a8e3d095c71f2f51dcba80c4bf75f8dc8 [file] [log] [blame]
package p;
import java.util.ArrayList;
import java.util.List;
class A {
void foo() {
List l= new ArrayList();
l.add(new String());
}
}