12 lines
164 B
Kotlin
Vendored
12 lines
164 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
package f
|
|
|
|
fun test(a: Boolean, b: Boolean): Int {
|
|
return if(a) {
|
|
1
|
|
} else {
|
|
if (b) {
|
|
3
|
|
}
|
|
}
|
|
} |