Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/functionReference.kt.after
T

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) {
}