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