Files
kotlin-fork/compiler/tests-spec/testData/diagnostics/helpers/functions.kt
T
2018-08-31 17:15:40 +03:00

8 lines
140 B
Kotlin
Vendored

fun _funWithoutArgs(): Int {
return Any().hashCode().toInt()
}
fun _funWithAnyArg(value_1: Any): Int {
return value_1.hashCode()
}