Quickfix for UNSAFE_INFIX_CALL

This commit is contained in:
Michał Sapalski
2013-02-18 10:41:29 +01:00
committed by Evgeny Gerashchenko
parent 69de91aa88
commit c2f5743cf0
6 changed files with 114 additions and 2 deletions
@@ -0,0 +1,4 @@
// "Replace with safe (?.) call" "true"
fun test(a : Int?) : Int? {
return a <caret>compareTo 6;
}