Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/memberOrder/callablesNameClash.kt
T
2018-07-24 10:52:16 +03:00

18 lines
203 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
}