```Foo<List<String>>``` in kotlin is `...
# announcements
t
Copy code
Foo<List<String>>
in kotlin is
Copy code
Foo<? extends List<String>>
in java. the annotation tells the compiler not to add the
? extends