Files
kotlin-fork/idea/testData/completion/basic/multifile/InImportedFunctionLiteralParameter.dependency.kt
T
2014-04-02 13:37:18 +04:00

9 lines
195 B
Kotlin

package second
class Some {
// Two function to prevent automatic insert
fun testFunction1() : Int = 12
fun testFunction2() : Int = 12
}
fun someWithLiteral(body: (Some) -> Unit): Int = 12