QuickFix: change function return type to match expexted type of call
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
// "Change 'bar' function return type to 'String'" "true"
|
||||
fun bar(): String = ""
|
||||
fun foo(): String = bar(<caret>)
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
// "Change 'bar' function return type to 'String'" "true"
|
||||
fun bar(): Any = ""
|
||||
fun foo(): String = bar(<caret>)
|
||||
Reference in New Issue
Block a user