Files

7 lines
101 B
Kotlin
Vendored

// FIR_IDENTICAL
fun bar(b: Boolean) = b
fun foo(data: List<String>) {
bar(data.contains(""))
}