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:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user