Introduce backing property: fix false positive for const property #KT-28341 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-11-21 23:27:52 +09:00
committed by Mikhail Glukhikh
parent 7080559cb4
commit e5f0f2489f
3 changed files with 14 additions and 4 deletions
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
class C {
companion object {
const val <caret>CONST = 1
}
}