9 lines
99 B
Plaintext
9 lines
99 B
Plaintext
trait T{
|
|
fun foo(): Int {
|
|
return i()
|
|
}
|
|
|
|
fun i(): Int {
|
|
return 1
|
|
}
|
|
} |