Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/memberVarDelegateRuntime.kt.after
T
2019-11-13 08:37:25 +09:00

12 lines
251 B
Plaintext
Vendored

import kotlin.properties.ReadWriteProperty
// "Create function 'foo'" "true"
class A<T>(val t: T) {
var x: A<Int> by foo(t, "")
private fun foo(t: T, s: String): ReadWriteProperty<A<T>, A<Int>> {
TODO("Not yet implemented")
}
}