Files
kotlin-fork/plugins/uast-kotlin-fir/testData/declaration/facade.kt
T
2021-05-11 21:43:02 +02:00

15 lines
246 B
Kotlin
Vendored

@file:JvmName("Utils")
@file:JvmMultifileClass
package declaration
// Single-line comment bound to fun foo
fun foo(): Int = 42
/*
* Multi-line comment bound to extension fun buzz
*/
fun String.buzz(): String {
return "$this... zzz..."
}