Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funOnLibObject.kt.after
T
2019-11-13 08:37:25 +09:00

11 lines
181 B
Plaintext
Vendored

// "Create extension function 'Unit.foo'" "true"
// WITH_RUNTIME
fun test() {
val a: Int = Unit.foo(2)
}
private fun Unit.foo(i: Int): Int {
TODO("Not yet implemented")
}