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,12 @@
//FILE:a.kt
package a
// no error is reported
import b.a
fun foo() = a
//FILE:b.kt
package b
object a {}