Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/nullCheckSimple.kt
T
2017-12-26 18:39:47 +03:00

3 lines
77 B
Kotlin
Vendored

fun foo(arg: Any?): Any? {
return <caret>if (arg != null) arg else null
}