is marked as red even with the latest org.jetbrains.kotlinkotlin reflect1.4.30 in the classpatth. Still, the code seems to compile fine. Or is it just me? Example
Copy code
import kotlin.reflect.KFunction1
class Test( val funPointer: KFunction1<String, String>) {
init{
funPointer.call("foo")
}
}