485e098ced
#KT-26599 Fixed
12 lines
201 B
Plaintext
Vendored
12 lines
201 B
Plaintext
Vendored
// HIGHLIGHT: INFORMATION
|
|
// WITH_RUNTIME
|
|
|
|
class Test {
|
|
fun doAThing(param1: String) {
|
|
|
|
}
|
|
|
|
fun doAThingIfPresent(param1: String?) {
|
|
(param1 as? String)?.let { doAThing(it) }
|
|
}
|
|
} |