blob: a278de9767cff0fa22ce24cc2d53b80119cccb1e [file] [log] [blame]
class List<T> {}
class C {
void foo () {
List<? extends String> l = new List<String>();<caret>
}
}