Put property delegates -related warnings on 'by'

This commit is contained in:
Yan Zhulanow
2015-10-15 18:12:25 +03:00
parent b42d913bd7
commit 3bb1b1adfd
6 changed files with 25 additions and 12 deletions
@@ -4,5 +4,5 @@ class CustomDelegate
operator fun CustomDelegate.get(thisRef: Any?, prop: PropertyMetadata): String = ""
class Example {
val a: String by <caret>CustomDelegate()
val a: String <caret>by CustomDelegate()
}