Files
kotlin/idea/testData/multiFileIntentions/addJvmStaticToObjectFun/before/test/J.java
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

8 lines
102 B
Java
Vendored

package test;
class J {
void test(O o) {
o.foo("x");
O.INSTANCE.foo("y");
}
}