Files
kotlin/compiler/testData/codegen/controlStructures/singleBranchIf.kt
2013-01-24 21:12:27 +04:00

5 lines
63 B
Kotlin
Vendored

fun foo(b: Boolean) : Int {
if (b) return 15;
return 20;
}