QuickFix: change function return type to match expexted type of call

This commit is contained in:
Wojciech Lopata
2013-05-10 00:57:45 +02:00
parent 76e648ded3
commit 1a5d515972
4 changed files with 23 additions and 0 deletions
@@ -0,0 +1,3 @@
// "Change 'bar' function return type to 'String'" "true"
fun bar(): String = ""
fun foo(): String = bar(<caret>)
@@ -0,0 +1,3 @@
// "Change 'bar' function return type to 'String'" "true"
fun bar(): Any = ""
fun foo(): String = bar(<caret>)