4d9b19da82
#KT-18539 Fixed
12 lines
249 B
Plaintext
Vendored
12 lines
249 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 yet implemented")
|
|
}
|
|
}
|