Files
kotlin/compiler/testData/loadJava/compiledKotlin/memberOrder/callablesNameClash.kt
Pavel V. Talanov 40addaed13 Fix wrong deserialization order
For case when property and function have the same name or
extension and non-extension member have the same name
2014-11-14 17:09:14 +03:00

18 lines
179 B
Kotlin
Vendored

//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
}