Files
kotlin-fork/compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.fir.java
T
Dmitriy Novozhilov faa96ec7c0 [AA LC] Don't create light methods if value class is present in signature
^KT-55788

Test `parameter_jvmInline.kt` is removed because now members with value
  classes are not included in light classes and don't have PSI representation
2023-01-12 17:45:10 +00:00

33 lines
999 B
Java
Vendored

@kotlin.jvm.JvmInline()
public final class Some /* Some*/ {
@org.jetbrains.annotations.NotNull()
private final java.lang.String value;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getValue();// getValue()
public Some(@org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(java.lang.String)
}
public final class SomeClass /* SomeClass*/ {
@org.jetbrains.annotations.NotNull()
private java.lang.String memberProp;
public SomeClass();// .ctor()
}
public abstract interface SomeInterface /* SomeInterface*/ {
class DefaultImpls ...
}
public final class ValueClassInSignatureKt /* ValueClassInSignatureKt*/ {
@org.jetbrains.annotations.NotNull()
private static java.lang.String topLevelProp;
@org.jetbrains.annotations.NotNull()
public static final java.lang.String getTopLevelProp();// getTopLevelProp()
@org.jetbrains.annotations.NotNull()
public static final java.lang.String topLevelFunInReturn();// topLevelFunInReturn()
}