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

16 lines
213 B
Kotlin
Vendored

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