mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 19:42:48 +07:00
a952ee5872
GitOrigin-RevId: 2eb36ee066743ffcacf4fae2968ba9d6d9c8bcff
10 lines
191 B
Java
10 lines
191 B
Java
// "Create class 'Foo'" "true-preview"
|
|
import java.util.Collection;
|
|
public class Test {
|
|
public Collection<? extends Foo> getSomething() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public class <caret>Foo {
|
|
} |