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

11 lines
167 B
Plaintext
Vendored

// "Create member function 'A.foo'" "true"
object A {
fun foo(i: Int): Int {
TODO("Not yet implemented")
}
}
fun test() {
val a: Int = A.foo(2)
}