FIR: recursive transform annotation if it has annotation as argument
#KT-42344 Fixed
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user