Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/testIllegalAnnotationClass.kt
T
2020-12-16 19:52:30 +03:00

23 lines
423 B
Kotlin
Vendored

// FILE: State.java
package simulation
@Retention(RetentionPolicy.RUNTIME)
public @interface State {
@NotNull @NonNls
String name();
String @NotNull [] storages() default {};
}
// FILE: KotlinImporterComponent.kt
package simulation
// KotlinMavenImporter.kt:407:1
@State(
name = "AutoImportedSourceRoots"
)
class KotlinImporterComponent {
class State(var directories: List<String> = ArrayList())
}