KT-38003 works for Java implementations of extension method

This commit is contained in:
Valentin Kipyatkov
2020-04-08 16:59:18 +03:00
parent 84c9692332
commit 0b2aff4e70
5 changed files with 39 additions and 8 deletions
@@ -0,0 +1,6 @@
class JavaClass implements I {
@Override
public void foo(int receiver, Object p) {
System.out.println(p);
}
}