Files
kotlin-fork/libraries/tools/kotlinp/testData/SyntheticClass.kt
T
Alexander Udalov 4b284a4890 Add kotlinp, a tool to print Kotlin metadata in class/module files
At the moment, it's not published anywhere, but that may change soon

 #KT-23198
2018-05-16 17:16:21 +02:00

8 lines
171 B
Kotlin
Vendored

fun f(a: AnnotationTarget): String? {
return when (a) {
AnnotationTarget.FUNCTION -> "1"
AnnotationTarget.PROPERTY -> "2"
else -> null
}
}