Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/ImportTwoTimesStar.fir.kt
T

15 lines
196 B
Kotlin
Vendored

// FILE: a.kt
package weatherForecast
fun weatherToday() = "snow"
// FILE: b.kt
package myApp
import weatherForecast.*
import weatherForecast.*
fun needUmbrella() = weatherToday() == "rain"