Test for unnecessary non-null assertion fixed

This commit is contained in:
Sergey Lukjanov
2012-06-20 13:06:53 +04:00
parent a39615750d
commit 4478f2dc4a
2 changed files with 2 additions and 2 deletions
@@ -1,4 +1,4 @@
// "Replace with dot call" "true"
// "Remove unnecessary non-null assertion (!!)" "true"
fun test(value : Int) : Int {
value<caret>
}
@@ -1,4 +1,4 @@
// "Replace with dot call" "true"
// "Remove unnecessary non-null assertion (!!)" "true"
fun test(value : Int) : Int {
value<caret>!!
}