blob: f0f8ed1c705f746ba4c9cff9e4285756ef45b7c7 [file] [log] [blame]
// TARGET_BACKEND: JVM
// FIR_IDENTICAL
// FILE: Some.java
public class Some {
public static final String HELLO = "HELLO";
}
// FILE: AnnotationInAnnotation.kt
annotation class Storage(val value: String)
annotation class State(val name: String, val storages: Array<Storage>)
@State(
name = "1",
storages = [Storage(value = Some.HELLO)]
)
class Test