mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
18 lines
203 B
Kotlin
Vendored
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
|
|
} |