Fix tests: "Placing function type parameters after the function name" error
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
package testing
|
||||
|
||||
private fun times<T>(times : Int, body : () -> T) {}
|
||||
private fun <T> times(times : Int, body : () -> T) {}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
times(3) {<caret>}
|
||||
|
||||
Reference in New Issue
Block a user