Files
kotlin-fork/j2k/testData/fileOrElement/nullability/MethodInvokedWithTernaryNullArg.kt
T
2016-12-14 13:35:31 +03:00

7 lines
122 B
Kotlin
Vendored

internal class C {
private fun foo(s: String?) {}
fun bar(b: Boolean) {
foo(if (b) "a" else null)
}
}