07767f88e2
^KT-62340
9 lines
184 B
Kotlin
Vendored
9 lines
184 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
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) {}
|
|
} |