Files
kotlin-fork/idea/testData/intentions/objectLiteralToLambda/ExpressionBody.kt.after
T
Roman Golyshev 4042214bb2 Fix tests broken by enhanced RedundantSamConstructor inspection
- The inspection now works in more cases, so the test data had to be
updated accordingly
2020-02-20 17:27:41 +03:00

10 lines
155 B
Plaintext
Vendored

// WITH_RUNTIME
import java.io.File
import java.io.FileFilter
fun foo(filter: FileFilter) {}
fun bar() {
foo { file -> file.name.startsWith("a") }
}