Files
kotlin/compiler/testData/codegen/light-analysis/reflection/annotations/findAnnotation.txt
Alexander Udalov c811c1bea5 Reflection: add KAnnotatedElement.findAnnotation
#KT-12250 Fixed
2016-12-07 21:45:24 +03:00

20 lines
435 B
Plaintext
Vendored

public final class FindAnnotationKt {
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
}
@Yes
@No
public final class Foo {
public method <init>(): void
}
@java.lang.annotation.Retention
public annotation class No {
public abstract method value(): java.lang.String
}
@java.lang.annotation.Retention
public annotation class Yes {
public abstract method value(): java.lang.String
}