mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
22 lines
329 B
Java
22 lines
329 B
Java
class Main {
|
|
public static void main(String[] args) {
|
|
|
|
}
|
|
|
|
interface Add {
|
|
static OptionalLong set(long a) {
|
|
return null;
|
|
}
|
|
|
|
interface Async {
|
|
/**
|
|
* @see #set(long)
|
|
*/
|
|
CompletableFuture<OptionalLong> add<caret>(long a);
|
|
|
|
static void x() {
|
|
set(1);
|
|
}
|
|
}
|
|
}
|
|
} |