Files
kotlin-fork/idea/testData/codegen/localProperty.jet
T
Andrey Breslav 94f00509e2 JET-34 Require a return statement in a function with a block body
JET-77 Require a return type annotation for non-Unit returning functions with block bodies
2011-06-17 18:03:30 +04:00

7 lines
64 B
Plaintext

fun f(a:Int) : Int {
val x = 42
val y = 50
return y
}