Correct scope for property accessors in lazy resolve

This commit is contained in:
Andrey Breslav
2014-03-19 18:53:55 +04:00
parent 4dfb6763b2
commit 34c6eaec56
9 changed files with 62 additions and 10 deletions
@@ -0,0 +1,9 @@
class Foo(val a: Int, b: Int) {
val c = a + b
val d: Int
get() = a
val e: Int
get() = <!UNRESOLVED_REFERENCE!>b<!>
}