Refactoring: make "replace call with binary operator" an inspection
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
// PROBLEM: none
|
||||
|
||||
fun test() {
|
||||
class Test {
|
||||
operator fun mod(a: Int): Test = Test()
|
||||
}
|
||||
val test = Test()
|
||||
test.<caret>mod(1)
|
||||
}
|
||||
Reference in New Issue
Block a user