Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/callInMemberValDelegateRuntime.kt.after
T

14 lines
205 B
Plaintext
Vendored

import kotlin.properties.ReadOnlyProperty
// "Create class 'Foo'" "true"
open class B
class A<T>(val t: T) {
val x: B by Foo(t, "")
}
class Foo<T>(t: T, s: String) : ReadOnlyProperty<A<T>, B> {
}