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

12 lines
352 B
Plaintext

// "Create function 'foo'" "true"
import kotlin.properties.ReadOnlyProperty
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>> {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}