mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
110 B
Kotlin
Vendored
10 lines
110 B
Kotlin
Vendored
class A {
|
|
val x = go() // A
|
|
|
|
fun go() = 4 // A
|
|
|
|
fun foo() {
|
|
"" // A
|
|
}
|
|
}
|