Files
kotlin/idea/testData/decompiler/decompiledText/Object/Object.kt
2015-05-26 05:04:49 +03:00

20 lines
252 B
Kotlin
Vendored

package test
object Object {
fun f() {
}
fun Int.f() {
}
private fun privateFun() {
}
val Int.g: Int
get() = this + 2
fun <T, K, G> complexFun(a: T, b: K, c: G): G {
throw RuntimeException()
}
}