blob: 86f19cf261eef17e6ed249975d8be5eb67288e9b [file] [log] [blame]
import kotlin.reflect.KFunction3
class Baz
fun foo(a: Int, b: String, d: Baz) {
}
class TestClass(val prop1: KFunction3<Int, String, Baz, Unit> = ::foo) {
}