fbb4914bfb
#KT-22931 Fixed
11 lines
274 B
Kotlin
Vendored
11 lines
274 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// FIX: Convert to 'also'
|
|
class Employee(val firstName: String, val manager: Employee?)
|
|
|
|
fun test(employee: Employee) {
|
|
val person = employee.also {
|
|
it.manager?.<caret>apply {
|
|
println("${it.firstName} has a manager")
|
|
}
|
|
}
|
|
} |