Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/functionReference.kt.after
T
Vyacheslav Gerasimov 6b9242075a Fix MovePropertyToConstructorIntention applicability and type rendering
#KT-17238 Fixed

(cherry picked from commit 7f9d88a)
2017-04-07 14:32:06 +03:00

10 lines
241 B
Plaintext
Vendored

import kotlin.reflect.KFunction3
class Baz
fun foo(a: Int, b: String, d: Baz) {
}
class TestClass(val prop1: KFunction3<@ParameterName(name = "a") Int, @ParameterName(name = "b") String, @ParameterName(name = "d") Baz, Unit> = ::foo) {
}