KT-7756 Completion of "return null", "return true" and "return false"

#KT-7756 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-05-16 19:03:52 +03:00
parent 009baa11fc
commit 603f7ef3c1
11 changed files with 105 additions and 10 deletions
@@ -0,0 +1,5 @@
fun foo(): String? {
ret<caret>
}
// ELEMENT: "return null"
@@ -0,0 +1,5 @@
fun foo(): String? {
return null<caret>
}
// ELEMENT: "return null"