Fix wrong deserialization order

For case when property and function have the same name or
extension and non-extension member have the same name
This commit is contained in:
Pavel V. Talanov
2014-11-14 15:18:58 +03:00
parent e8aee5cddf
commit 40addaed13
8 changed files with 141 additions and 35 deletions
@@ -0,0 +1,10 @@
//ALLOW_AST_ACCESS
package test
class A {
val a: Int = 3
val c: Int = 3
val Int.a: Int get() = 3
val Int.b: Int get() = 4
val Int.c: Int get() = 4
}