Tested one more case

This commit is contained in:
Valentin Kipyatkov
2015-07-17 16:50:19 +03:00
parent 4a8adacedd
commit d2fb7381ce
2 changed files with 4 additions and 0 deletions
@@ -4,6 +4,7 @@ fun foo(javaClass: JavaClass) {
javaClass.<!UNRESOLVED_REFERENCE!>something2<!>
javaClass.<!UNRESOLVED_REFERENCE!>somethingStatic<!>
javaClass.<!UNRESOLVED_REFERENCE!>somethingVoid<!>
javaClass.<!UNRESOLVED_REFERENCE!>ter<!>
}
// FILE: JavaClass.java
@@ -15,4 +16,6 @@ public class JavaClass {
public static int getSomethingStatic() { return 1; }
public void getSomethingVoid() { }
public int getter() { return 1; }
}
@@ -8,6 +8,7 @@ public open class JavaClass {
public open fun getSomething1(/*0*/ p: kotlin.Int): kotlin.Int
public open fun </*0*/ T> getSomething2(): T!
public open fun getSomethingVoid(): kotlin.Unit
public open fun getter(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String