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,18 @@
|
||||
//ALLOW_AST_ACCESS
|
||||
package test
|
||||
|
||||
val a = 0
|
||||
val c = 0
|
||||
|
||||
fun a() = 0
|
||||
fun b() = 0
|
||||
fun c() = 0
|
||||
|
||||
class A {
|
||||
val a = 0
|
||||
val c = 0
|
||||
|
||||
fun a() = 0
|
||||
fun b() = 0
|
||||
fun c() = 0
|
||||
}
|
||||
Reference in New Issue
Block a user