add test to verify output files; correctly handle lambdas
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
org/demo/coverage/Foo
|
||||
org/demo/coverage/Foo$bar$1
|
||||
@@ -0,0 +1,12 @@
|
||||
package org.demo.coverage
|
||||
|
||||
public class Foo {
|
||||
public fun forEach(fn: (Any?) -> Unit): Unit {
|
||||
}
|
||||
|
||||
public fun bar() {
|
||||
forEach {
|
||||
println("foo")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user