Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/memberValDelegateRuntime.kt.after
T

12 lines
321 B
Plaintext
Vendored

import kotlin.properties.ReadOnlyProperty
// "Create function 'foo'" "true"
class A<T>(val t: T) {
val x: A<Int> by foo(t, "")
private fun foo(t: T, s: String): ReadOnlyProperty<A<T>, A<Int>> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}