'Replace with infix call' Intention: Disable on calls without explicit receiver

#KT-6332 Fixed
This commit is contained in:
Alexey Sedunov
2015-12-18 14:30:33 +03:00
parent ae636a0d32
commit 123b813073
3 changed files with 11 additions and 1 deletions
@@ -0,0 +1,3 @@
// IS_APPLICABLE: false
infix fun id(s: String) = s
val x = <caret>id("0").get(0)