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