Files
kotlin-fork/compiler/testData/asJava/lightClasses/compilationErrors/RepetableAnnotations.java
T
Igor Yakovlev 309bf49a83 Update lightclass tests renderer
+mute invalid old light classes tests
2020-09-11 12:49:04 +03:00

19 lines
399 B
Java
Vendored

public final class Annotations /* p.Annotations*/ {
@p.R(s = "a")
@p.R(s = "b")
@p.R(s = "c")
public final void repeatables1();// repeatables1()
@p.R(s = "a")
@p.R(s = "c")
@p.R(s = "f")
@p.S(g = "D")
@p.S(g = "b")
public final void repeatables3();// repeatables3()
@p.R(s = "a")
public final void repeatables2();// repeatables2()
public Annotations();// .ctor()
}