Files
kotlin/compiler/testData/codegen/boxWithJava/property/fieldAccessViaSubclass.java
Alexander Udalov d913dfb1aa Correctly map declaration owner in JVM codegen
"context.contextKind()" was incorrect in
ExpressionCodegen.intermediateValueForProperty(), because it represents the
context of the call site, not the context of the property declaration

 #KT-4878 Fixed
2014-04-24 16:10:12 +04:00

6 lines
93 B
Java

class fieldAccessViaSubclass {
public String fieldO;
public static String fieldK;
}