4042214bb2
- The inspection now works in more cases, so the test data had to be updated accordingly
10 lines
148 B
Plaintext
Vendored
10 lines
148 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
import java.io.File
|
|
import java.io.FilenameFilter
|
|
|
|
fun foo(filter: FilenameFilter) {}
|
|
|
|
fun bar() {
|
|
foo { file, name -> true }
|
|
}
|