Fix incorrect quickfix "Replace with Kotlin analog" for conversion to an extension

where the first argument is an expression with an operation
 #KT-31341 Fixed
This commit is contained in:
Dmitry Gridin
2019-05-07 16:08:15 +07:00
parent b4a63794e5
commit 07e908f15f
4 changed files with 18 additions and 1 deletions
@@ -0,0 +1,5 @@
// WITH_RUNTIME
fun foo() {
Integer<caret>.toString(42 + 24, 16)
}
@@ -0,0 +1,5 @@
// WITH_RUNTIME
fun foo() {
(42 + 24).toString(16)
}