b650753643
No spaces between 'fun' and value parameter list
8 lines
118 B
Kotlin
8 lines
118 B
Kotlin
// "Migrate lambda syntax in whole project" "true"
|
|
|
|
val a = fun(): Int {
|
|
|
|
val b = fun(): Int = 5
|
|
|
|
return b()
|
|
} |