Files
kotlin-fork/idea/testData/refactoring/extractFunction/controlFlow/throws/outputValueWithThrow.kt
T
2014-06-23 21:10:12 +04:00

10 lines
165 B
Kotlin

// PARAM_TYPES: kotlin.Int
// SIBLING:
fun foo(a: Int): Int {
var b: Int = 1
<selection>if (n == 10) throw Exception("")
b++</selection>
return b
}