Add explicit return types to several test data files so that AST access is not needed
Test cases are chosen so that addition/removal of explicit type will not interfere with the original purpose of the test
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
package test
|
||||
|
||||
fun funDefaultArg(p: Int, q: Int = 17, r: Int = 18) = 19
|
||||
fun funDefaultArg(p: Int, q: Int = 17, r: Int = 18): Int = 19
|
||||
|
||||
Reference in New Issue
Block a user