mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
7 lines
131 B
Kotlin
7 lines
131 B
Kotlin
package test
|
|
|
|
annotation class A(val a: Int = 12, val b: String = "Test", val c: String)
|
|
|
|
A(a = 12, c = "Hello")
|
|
object SomeObject
|