10 lines
160 B
Plaintext
Vendored
10 lines
160 B
Plaintext
Vendored
import kotlin.reflect.KFunction3
|
|
|
|
class Baz
|
|
|
|
fun foo(a: Int, b: String, d: Baz) {
|
|
|
|
}
|
|
|
|
class TestClass(val prop1: KFunction3<Int, String, Baz, Unit> = ::foo) {
|
|
} |