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

19 lines
236 B
Kotlin
Vendored

@NoArg
annotation class NoArg
@NoArg
interface Intf
@NoArg
enum class Colors { RED, WHITE }
@NoArg
object Obj
class MyClass(a: Int) {
@NoArg
fun someFun() {}
@field:NoArg @get:NoArg @set:NoArg
var abc: String = ""
}