7 lines
78 B
Kotlin
7 lines
78 B
Kotlin
class A {
|
|
var field = foo()
|
|
|
|
fun foo(): Int {
|
|
return 1
|
|
}
|
|
} |