[Test] Render annotations on enum entries in PSI class renderer

This commit is contained in:
Dmitriy Novozhilov
2022-09-07 18:12:43 +03:00
parent 7ef81c27df
commit c34f952126
3 changed files with 26 additions and 5 deletions
@@ -1,7 +1,7 @@
public enum E /* p.E*/ {
Entry1,
@kotlin.Deprecated(message = "a") Entry1,
Entry2,
Entry3;
@kotlin.Deprecated(message = "b") Entry3;
@org.jetbrains.annotations.NotNull()
public static p.E valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) throws java.lang.IllegalArgumentException;// valueOf(java.lang.String)
@@ -11,4 +11,4 @@ public enum E /* p.E*/ {
private E();// .ctor()
}
}