8 lines
103 B
Plaintext
8 lines
103 B
Plaintext
fun foo(a: Int): Int {
|
|
// SIBLING:
|
|
fun i(): Int {
|
|
return a + 10
|
|
}
|
|
|
|
return i()
|
|
} |