mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
12 lines
211 B
Kotlin
Vendored
12 lines
211 B
Kotlin
Vendored
// FILE: annotations.kt
|
|
@Target(AnnotationTarget.CLASS)
|
|
public annotation class ClassAnn
|
|
|
|
@Target(AnnotationTarget.FILE)
|
|
public annotation class FileAnn
|
|
|
|
// FILE: 1.kt
|
|
@file:ClassAnn
|
|
|
|
// FILE: 2.kt
|
|
@file:FileAnn |