Extension/non-Extension members are deserialized in correct order

This commit is contained in:
Pavel V. Talanov
2014-11-11 16:44:42 +03:00
parent 8e1111d690
commit 8016766b23
6 changed files with 116 additions and 7 deletions
@@ -0,0 +1,41 @@
//ALLOW_AST_ACCESS
package test
class A {
fun String.f1() {
}
fun f1() {
}
fun Int.f1() {
}
val Int.c: Int
get() = 1
val c: Int = 2
val d: Int = 2
val Int.d: Int
get() = 1
fun String.f2() {
}
fun f2() {
}
fun Int.f2() {
}
fun String.f3() {
}
fun f3() {
}
fun Int.f3() {
}
}