Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/ImportTwoTimesStar.kt
T
Andrey Breslav 8a79e7ab7d .jet -> .kt
2013-04-12 21:06:54 +04:00

15 lines
196 B
Kotlin

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