Added correctness check of test data + fixed huge amount of incorrect code in test data
This commit is contained in:
+3
-3
@@ -1,11 +1,11 @@
|
||||
// FLOW: IN
|
||||
|
||||
fun foo(f: (Int) -> Unit): Int {
|
||||
return f(1)
|
||||
fun foo(f: (Int) -> Unit) {
|
||||
f(1)
|
||||
}
|
||||
|
||||
fun test() {
|
||||
foo {
|
||||
println(<caret>it)
|
||||
val v = <caret>it
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user