4436142f00
- Enable custom compiler options for `AbstractNewJavaToKotlinConverterSingleFileTest` - ^KT-38450 Fixed
10 lines
174 B
Java
Vendored
10 lines
174 B
Java
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
|
|
@FunctionalInterface
|
|
public interface MyRunnable {
|
|
int getResult();
|
|
|
|
default int getDoubleResult() {
|
|
return getResult() * 2;
|
|
}
|
|
} |