blob: f96b91c831c8107a23e510dfab7af4a53f8343b1 [file] [log] [blame]
import java.util.List;
public class StringValCrash {
void foo() {
List<String> path = null;
System.out.print(path.size() + "...");
}
}