Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/invoke/lambdaArgument.kt
2016-11-07 20:03:37 +03:00

9 lines
118 B
Kotlin
Vendored

// "Create extension function 'Test.invoke'" "true"
class Test
fun test() {
var t = Test()
<caret>t{
}
}