12 lines
323 B
Plaintext
Vendored
12 lines
323 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 implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|