Add 'operator' modifier to stdlib property Delegate functions

This commit is contained in:
Yan Zhulanow
2015-10-12 19:37:04 +03:00
parent d2358c7fb4
commit f9e89596fd
7 changed files with 12 additions and 12 deletions
@@ -3,5 +3,5 @@ import kotlin.properties.Delegates
class C {
val `x$delegate`: ReadWriteProperty<Any, Any>? = null
val x: String? by <!OPERATOR_MODIFIER_REQUIRED!>Delegates.notNull()<!>
val x: String? by Delegates.notNull()
}