9 lines
170 B
Kotlin
Vendored
9 lines
170 B
Kotlin
Vendored
// FILE: UnrepeatableAnnotation.java
|
|
|
|
public @interface UnrepeatableAnnotation {
|
|
|
|
}
|
|
|
|
// FILE: UnrepeatableUse.kt
|
|
|
|
@UnrepeatableAnnotation @UnrepeatableAnnotation class My |