blob: ffd936e30b6fb6e5f9ae210fa372e512f902e75a [file] [log] [blame]
import java.util.Collections;
import java.util.List;
class A {
void foo(List<String> x){}
{
foo(Collections.<String>emptyList());<caret>
}
}