[LC] render all type annotations in tests

^KT-66603
This commit is contained in:
Dmitrii Gridin
2024-03-15 17:15:55 +01:00
committed by Space Team
parent 66d1839d20
commit 3c8a95e623
38 changed files with 615 additions and 143 deletions
@@ -0,0 +1,26 @@
public enum Foo /* Foo*/ {
;
@org.jetbrains.annotations.NotNull()
public static Foo valueOf(java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(java.lang.String)
@org.jetbrains.annotations.NotNull()
public static Foo[] values();// values()
public final int getX();// getX()
}
public final class InlineInheritance /* InlineInheritance*/ {
public final int getV();// getV()
public int getX();// getX()
public int y();// y()
}
public final class InlinedDelegate /* InlinedDelegate*/<T> {
public final T getNode();// getNode()
}
public final class UInt /* UInt*/ {
}