Files
kotlin-fork/compiler/testData/asJava/ultraLightClasses/jvmSyntheticForAccessors.java
T
Igor Yakovlev af1e3fb10d UL properties supports JvmSynthetic annotation for get: and set: modifiers
(+small refactoring)
Fixed #KT-34973
2020-03-16 18:42:17 +03:00

9 lines
117 B
Java
Vendored

public final class X /* X*/ {
@null()
public X();
public final int getW();
public final void setV(int);
}