mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
19 lines
277 B
Kotlin
Vendored
19 lines
277 B
Kotlin
Vendored
annotation class NoArg
|
|
|
|
@NoArg
|
|
annotation class MetaAnno
|
|
|
|
@NoArg
|
|
interface BaseIntf
|
|
|
|
@NoArg
|
|
class Test(a: String = "", i: Int = 2)
|
|
|
|
class Test2 : BaseIntf {
|
|
constructor(a: String = "", b: Long = 0L) {}
|
|
}
|
|
|
|
@MetaAnno
|
|
class Test3(a: String) {
|
|
constructor() : this("") {}
|
|
} |