Move: Updated test data (functions/properties are not imported by default)

This commit is contained in:
Alexey Sedunov
2014-10-06 13:47:18 +04:00
parent 1353e7f56b
commit 74242a5fd9
@@ -1,11 +1,10 @@
package c
import b.a.A
import b.a
fun bar() {
val t: A = A()
a.foo()
println(a.x)
a.x = ""
b.a.foo()
println(b.a.x)
b.a.x = ""
}