Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/extensionFunctionInClass.kt.after
T
2019-06-07 12:23:54 +07:00

5 lines
88 B
Plaintext
Vendored

class Foo {
fun Foo.bar(): Int = 1
}
fun Foo.test(foo: Foo?): Int = foo?.bar() ?: 0