mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
20 lines
435 B
Plaintext
Vendored
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
|
|
}
|