Files
kotlin/compiler/testData/codegen/boxAgainstJava/annotations/retentionInJava.kt
2015-09-18 10:14:32 +03:00

8 lines
94 B
Kotlin
Vendored

import java.lang.annotation.*
@Foo class Bar
fun box(): String {
Bar()
return "OK"
}