mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 07:25:22 +07:00
48a0c3c03c
GitOrigin-RevId: 042aed924d9fc35e1ca86ae8660a7a75fe45bd25
6 lines
156 B
Java
6 lines
156 B
Java
// "Create enum 'Foo'" "true"
|
|
public interface Test {
|
|
default void foo(java.util.List<? extends Test> l){
|
|
if (l.get(0) instanceof Fo<caret>o) {}
|
|
}
|
|
} |