More correct detection of super property

This commit is contained in:
Valentin Kipyatkov
2015-09-23 13:25:47 +03:00
parent 8a0cd92aff
commit b1b5af8e1e
7 changed files with 71 additions and 10 deletions
+11
View File
@@ -1,7 +1,10 @@
package javaApi;
import org.jetbrains.annotations.Nullable;
import java.lang.String;
import java.util.Set;
import kotlinApi.KotlinClassWithProperties;
public @interface Anon1 {
String[] value();
@@ -103,4 +106,12 @@ public class JavaClassWithProperties {
public int getValue4() { return 1; }
public void setValue4(int value) { }
}
public class JavaClassDerivedFromKotlinClassWithProperties extends KotlinClassWithProperties {
@Override
public String getSomeVar1() { return ""; }
@Override
public void setSomeVar2(String value) { }
}