[ULC] Fix rendering for Foo.class in annotation value

Previously it was Foo::class, but it isn't correct because in java it
is Foo.class

P.s. Array<Foo> cannot be passed as annotation parameter
This commit is contained in:
Stanislav Erokhin
2021-10-30 05:14:54 +02:00
committed by Space
parent 65abc94411
commit f455141ade
5 changed files with 19 additions and 11 deletions
@@ -1,4 +1,4 @@
@java.lang.annotation.Repeatable(value = TwoContainer::class)
@java.lang.annotation.Repeatable(value = TwoContainer.class)
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
@kotlin.annotation.Repeatable()
public abstract @interface Two /* Two*/ {