Quickfix for UNSAFE_INFIX_CALL
This commit is contained in:
committed by
Evgeny Gerashchenko
parent
69de91aa88
commit
c2f5743cf0
@@ -0,0 +1,4 @@
|
||||
// "Replace with safe (?.) call" "true"
|
||||
fun test(a : Int?) : Int? {
|
||||
return a?.compareTo(6);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Replace with safe (?.) call" "true"
|
||||
fun test(a : Int?) : Int? {
|
||||
return a <caret>compareTo 6;
|
||||
}
|
||||
Reference in New Issue
Block a user