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

10 lines
220 B
Plaintext
Vendored

// "Create member function 'C.foo'" "true"
class SetOptions
fun isModified(setOptions: SetOptions, c: C) = c.foo(setOptions)
class C {
fun foo(options: SetOptions): Any {
TODO("Not yet implemented")
}
}