Files
kotlin-fork/compiler/testData/asJava/lightClasses/lightClassByPsi/deprecatedHiddenProperty_accessors.java
T
Jinseong Jeon b0ad91a98c SLC: create backing field for deprecated property
...since they still appear at JVM bytecode.

Also, ULC doesn't look at deprecated annotation for bail-out criteria.

^KT-65393 fixed
2024-02-11 01:41:44 +00:00

26 lines
1.2 KiB
Java
Vendored

public final class Test /* test.pkg.Test*/ {
@org.jetbrains.annotations.Nullable()
private java.lang.String pNew_accessors = null /* initializer type: null */;
@org.jetbrains.annotations.Nullable()
private java.lang.String pOld_accessors_deprecatedOnGetter = null /* initializer type: null */;
@org.jetbrains.annotations.Nullable()
private java.lang.String pOld_accessors_deprecatedOnProperty = null /* initializer type: null */;
@org.jetbrains.annotations.Nullable()
private java.lang.String pOld_accessors_deprecatedOnSetter = null /* initializer type: null */;
@org.jetbrains.annotations.Nullable()
public final java.lang.String getPNew_accessors();// getPNew_accessors()
@org.jetbrains.annotations.Nullable()
public final java.lang.String getPOld_accessors_deprecatedOnSetter();// getPOld_accessors_deprecatedOnSetter()
public Test();// .ctor()
public final void setPNew_accessors(@org.jetbrains.annotations.Nullable() java.lang.String);// setPNew_accessors(java.lang.String)
public final void setPOld_accessors_deprecatedOnGetter(@org.jetbrains.annotations.Nullable() java.lang.String);// setPOld_accessors_deprecatedOnGetter(java.lang.String)
}