blob: 6449c4e83f0b68c817a1deda1a8a025257cf4416 [file] [log] [blame]
class Mocha() {
operator fun invoke(x: Int, y: String, f: (Int) -> String) {
}
}
fun main() {
val mocha = Mocha()
val testing = mocha<caret>(1, "fire"){ x: Int -> "hello world" }
}