blob: 288526ad58408a1279697861c0dfc88914d81f6b [file] [log] [blame]
// "Change 'new ArrayList<Integer>()' to 'new ArrayList<String>()'" "true"
import java.util.*;
class RRR {
void f() {
List<String> l = new ArrayList<>(<caret>);
}
}