Files
kotlin-fork/idea/testData/intentions/branched/ifThenToElvis/extensionFunctionInClass.kt
T

5 lines
121 B
Kotlin
Vendored

class Foo {
fun Foo.bar(): Int = 1
}
fun Foo.test(foo: Foo?): Int = <caret>if (foo == null) { 0 } else { foo.bar() }