Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/referenceExpression/afterValDelegateExpressionRuntime.kt
2014-11-11 14:42:42 +03:00

15 lines
182 B
Kotlin

// "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> {
}