Mix class object scope to member resolution scope in lazy resolve

This commit is contained in:
Nikolay Krasko
2013-06-04 14:56:48 +04:00
parent 37cd7eb1ba
commit 994107ee0a
12 changed files with 230 additions and 16 deletions
@@ -0,0 +1,9 @@
package test
class A {
class object {
val some = 1
}
val other = some
}