Files
kotlin-fork/idea/testData/intentions/expandBooleanExpression/call.kt
T
Toshiaki Kameyama 343af60cb4 Add intention to expand boolean expression
#KT-38597 Fixed
2020-06-02 23:52:06 +03:00

5 lines
86 B
Kotlin
Vendored

fun test(b: Boolean): Boolean {
return <caret>foo(b)
}
fun foo(b: Boolean) = true