Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/replaceWithLetInMember.kt.after
T
2018-09-07 17:24:19 +03:00

12 lines
188 B
Plaintext
Vendored

// HIGHLIGHT: INFORMATION
// WITH_RUNTIME
class Test {
fun doAThing(param1: String) {
}
fun doAThingIfPresent(param1: String?) {
param1?.let { doAThing(it) }
}
}