Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/referenceExpression/valDelegateExpressionRuntime.kt.after
T

15 lines
182 B
Plaintext

// "Create object 'Foo'" "true"
// DISABLE-ERRORS
import kotlin.properties.ReadOnlyProperty
open class B
class A {
val x: B by Foo
}
object Foo : ReadOnlyProperty<A, B> {
}