ba0b21d1a3
Also eliminate unnecessary object instance references on Java call sites #KT-20095 Fixed
8 lines
102 B
Java
Vendored
8 lines
102 B
Java
Vendored
package test;
|
|
|
|
class J {
|
|
void test(O o) {
|
|
o.foo("x");
|
|
O.INSTANCE.foo("y");
|
|
}
|
|
} |