Rename test

This commit is contained in:
Natalia Ukhorskaya
2014-12-10 13:45:30 +03:00
parent 9338b27bcd
commit 0ca811d7ae
3 changed files with 3 additions and 3 deletions
@@ -0,0 +1,12 @@
package org.demo.coverage
public class Foo {
public fun forEach(fn: (Any?) -> Unit): Unit {
}
public fun bar() {
forEach {
println("foo")
}
}
}