8 lines
111 B
Kotlin
8 lines
111 B
Kotlin
trait A {
|
|
fun foo() = test.lineNumber()
|
|
|
|
fun bar(): Int {
|
|
return test.lineNumber()
|
|
}
|
|
}
|