Files
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

7 lines
93 B
Kotlin
Vendored

package test
class C {
companion object O {
fun <caret>foo(s: String) {}
}
}