mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
13 lines
198 B
Java
13 lines
198 B
Java
// "Create method 'foo'" "true"
|
|
class A {
|
|
private List<? extends CharSequence> sequences = null;
|
|
|
|
{
|
|
f<caret>oo(sequences.map());
|
|
}
|
|
|
|
interface List<T> {
|
|
List<? super T> map();
|
|
}
|
|
}
|