"Convert property initializer to getter" intention: don't suggest if property has @JvmField annotation #KT-27139 Fixed

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