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

14 lines
204 B
Plaintext
Vendored

// "Create extension function 'Test.invoke'" "true"
class Test
fun test() {
var t = Test()
t{
}
}
private operator fun Test.invoke(function: () -> Unit) {
TODO("Not yet implemented")
}