"Introduce backing property" intention: don't suggest if property has @JvmField annotation #KT-27156 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-10-12 01:50:57 +09:00
committed by Mikhail Glukhikh
parent ca335880eb
commit 487b1e96be
3 changed files with 13 additions and 0 deletions
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
// WITH_RUNTIME
class Test {
@JvmField
val foo<caret> = 1
}