mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Currently all tests in boxWithStdlib/ run with both runtime and reflection included; eventually they'll be merged into box/ using these directives
21 lines
496 B
Kotlin
Vendored
21 lines
496 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// FILE: StringHolder.java
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target(ElementType.TYPE)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface StringHolder {
|
|
public String value();
|
|
}
|
|
|
|
// FILE: fileFacade.kt
|
|
|
|
@file:StringHolder("OK")
|
|
|
|
fun box(): String =
|
|
Class.forName("FileFacadeKt").getAnnotation(StringHolder::class.java)?.value ?: "null"
|