mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
9 lines
124 B
Plaintext
9 lines
124 B
Plaintext
fun ff(<!UNUSED_PARAMETER!>a<!>: String) = 1
|
|
|
|
fun gg() {
|
|
val a: String? = ""
|
|
|
|
if (a != null) {
|
|
ff(a)
|
|
}
|
|
} |