blob: a9387c75355cda046c14ad02e40249ccae1d525c [file] [log] [blame]
// "Create Local Variable 'foo'" "true"
import java.util.*;
class Test {
{
new Bar(Collections.singletonList(fo<caret>o));
}
class Bar {
Bar(List<String> l) {
}
}
}