mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
For case when property and function have the same name or extension and non-extension member have the same name
18 lines
179 B
Kotlin
Vendored
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
|
|
} |