f35af11423
- Convert between conventions call for 'get' and 'invoke' - Drop 'operator' when converting 'get'/'invoke' to something other than 'invoke'/'get' respectively #KT-12365 Fixed
7 lines
90 B
Plaintext
Vendored
7 lines
90 B
Plaintext
Vendored
class A {
|
|
operator fun invoke(n: Int, s: String) = 1
|
|
}
|
|
|
|
fun test() {
|
|
A()(1, "2")
|
|
} |