mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
10 lines
116 B
Kotlin
Vendored
10 lines
116 B
Kotlin
Vendored
annotation class NoArg
|
|
|
|
@NoArg
|
|
annotation class MyAnno
|
|
|
|
@MyAnno
|
|
interface Base
|
|
|
|
@MyAnno
|
|
class Test(a: String) : Base |