mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
14 lines
204 B
Kotlin
Vendored
14 lines
204 B
Kotlin
Vendored
package org.demo.coverage
|
|
|
|
public class Foo {
|
|
public fun forEach(fn: (Any?) -> Unit): Unit {
|
|
fn(1)
|
|
}
|
|
|
|
public fun bar() {
|
|
forEach {
|
|
println("foo")
|
|
}
|
|
}
|
|
}
|