Files
2022-07-20 10:12:24 +00:00

13 lines
224 B
Kotlin
Vendored

// WITH_STDLIB
package test
internal annotation class MyAnnotation
@MyAnnotation
internal class State @JvmOverloads constructor(
val someInt: Int,
val someLong: Long,
val someString: String = ""
)