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

15 lines
184 B
Kotlin

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