mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
10 lines
136 B
Java
10 lines
136 B
Java
import java.util.function.Supplier;
|
|
|
|
class MyTest {
|
|
|
|
public static final Inh values = () -> "";
|
|
}
|
|
|
|
interface Inh extends Supplier {
|
|
}
|