Files
kotlin-fork/native/native.tests/testData/klib/dump-metadata/FunctionModifiers.kt
T
2023-10-27 09:28:00 +00:00

8 lines
167 B
Kotlin
Vendored

class Foo {
fun f1() {}
infix fun f2(x: Int) {}
suspend fun f3() {}
operator fun plus(x: Int) {}
tailrec fun f4() {}
fun f5(vararg x: Int) {}
}