Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/functionReference.kt.after
T
Dmitry Gridin 11a3482970 tests: apply official code style
#KT-38632 Fixed
2020-05-07 12:36:44 +00:00

14 lines
261 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
) {
}