mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
14 lines
276 B
Plaintext
Vendored
14 lines
276 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 implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|