mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
14 lines
182 B
Kotlin
Vendored
14 lines
182 B
Kotlin
Vendored
package anotherPackage
|
|
|
|
import First
|
|
|
|
class Test : First() {
|
|
|
|
inline fun doTest(): String {
|
|
return TEST + test()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Test().doTest()
|
|
} |