Correct scope for property accessors in lazy resolve
This commit is contained in:
@@ -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<!>
|
||||
}
|
||||
Reference in New Issue
Block a user