Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/memberOrder/extensionPropertiesNameClash.kt
T
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

10 lines
169 B
Kotlin
Vendored

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