Files
kotlin-fork/idea/testData/intentions/addJvmStatic/valInAnonymousObject.kt
T
Alexey Sedunov ba0b21d1a3 Add @JvmStatic Intention: Support functions/properties in objects
Also eliminate unnecessary object instance references on Java call sites

 #KT-20095 Fixed
2017-11-07 19:25:03 +03:00

5 lines
79 B
Kotlin
Vendored

// IS_APPLICABLE: false
private fun test() = object {
val <caret>foo = 1
}