Deferred types are computed at the end of the top-down analysis

This commit is contained in:
Andrey Breslav
2011-09-28 14:19:51 +04:00
parent f6cc7b4cfe
commit 1c299fe536
17 changed files with 171 additions and 50 deletions
+2 -2
View File
@@ -14,9 +14,9 @@ val a = object {
{
b + 1
}
val x = <error>b</error>
val x = b
val y = 1
}
val b = a.x
val b = <error>a</error>.x
val c = a.y