Files
kotlin-fork/plugins/noarg/testData/bytecodeListing/constructorVisibility.kt
T
2022-06-07 14:12:16 +00:00

11 lines
199 B
Kotlin
Vendored

annotation class NoArg
@NoArg
class Internal internal constructor(z: Boolean)
@NoArg
abstract class Protected protected constructor(c: Char)
@NoArg
class Private private constructor(ia: IntArray)