4042214bb2
- The inspection now works in more cases, so the test data had to be updated accordingly
10 lines
155 B
Plaintext
Vendored
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") }
|
|
}
|