Files
kotlin-fork/nj2k/testData/newJ2k/function/externalFunctionalInterface.external.java
T
Ilya Kirillov f79b282c60 New J2K: add better support of implicit functional interfaces
#KT-32702 fixed
#KT-19327 fixed
2019-07-25 14:34:34 +03:00

3 lines
49 B
Java
Vendored

interface FunctionalI<A, B> {
B apply(A x);
}