Files
kotlin-fork/testData/ast/ifStatement/statement/ifStatementWithMultilineBlocks.kt
T
Sergey Ignatov 992675a1bc *_mult avoided
2011-11-07 13:36:13 +04:00

9 lines
59 B
Kotlin

if ((1 > 0))
{
var n : Int = 1
return n
}
else
{
return 0
}