16 lines
235 B
Kotlin
Vendored
16 lines
235 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FILE: a.kt
|
|
|
|
package weatherForecast
|
|
|
|
fun weatherToday() = "snow"
|
|
|
|
// FILE: b.kt
|
|
|
|
package myApp
|
|
|
|
import weatherForecast.weatherToday
|
|
import weatherForecast.weatherToday
|
|
|
|
fun needUmbrella() = weatherToday() == "rain"
|