Moved tests for imports into proper group

This commit is contained in:
Valentin Kipyatkov
2015-01-14 22:28:52 +03:00
parent 2c60201832
commit a9d4fd5213
23 changed files with 66 additions and 66 deletions
@@ -0,0 +1,14 @@
// FILE: a.kt
package weatherForecast
fun weatherToday() = "snow"
// FILE: b.kt
package myApp
import weatherForecast.weatherToday
import weatherForecast.weatherToday
fun needUmbrella() = weatherToday() == "rain"