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