Files
kotlin-fork/idea/testData/refactoring/introduceLambdaParameter/lambdaParamOfNothing.kt
T

8 lines
131 B
Kotlin
Vendored

// WITH_DEFAULT_VALUE: false
fun foo(a: Int) {
<selection>throw Exception("Error: $a")</selection>
}
fun test() {
foo(1)
}