Extract Function: Fix syntax error in test

This commit is contained in:
Alexey Sedunov
2014-09-18 17:36:48 +04:00
parent 40761dfc4c
commit 5a0b786cb9
2 changed files with 2 additions and 2 deletions
@@ -1,4 +1,4 @@
fun <T> Array<T>.check(a: Int, b: Int f: (T) -> Boolean): Boolean = false
fun <T> Array<T>.check(a: Int, b: Int, f: (T) -> Boolean): Boolean = false
// SIBLING:
fun foo(t: Array<Int>) {
@@ -1,4 +1,4 @@
fun <T> Array<T>.check(a: Int, b: Int f: (T) -> Boolean): Boolean = false
fun <T> Array<T>.check(a: Int, b: Int, f: (T) -> Boolean): Boolean = false
// SIBLING:
fun foo(t: Array<Int>) {