4d9b19da82
#KT-18539 Fixed
14 lines
204 B
Plaintext
Vendored
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")
|
|
}
|