Files
kotlin/plugins/noarg/noarg-cli/testData/bytecodeListing/annoOnNotClass.kt
2016-12-09 20:01:10 +03: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 = ""
}