Run LoadJava.CompiledKotlin test group with stdlib if some enum is inside
This commit makes compiler tests working similarly to ResolveByStub IDE tests.
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
// ALLOW_AST_ACCESS
|
||||
package test
|
||||
|
||||
enum class E { ENTRY }
|
||||
|
||||
annotation class StringOptions(vararg val option: String)
|
||||
annotation class EnumOption(val option: E)
|
||||
|
||||
annotation class OptionGroups(val o1: StringOptions, val o2: EnumOption)
|
||||
|
||||
@OptionGroups(StringOptions("abc", "d", "ef"), EnumOption(E.ENTRY))
|
||||
public class AnnotationInAnnotationArguments
|
||||
Reference in New Issue
Block a user