mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
150 B
Plaintext
11 lines
150 B
Plaintext
package foo
|
|
|
|
import foo.Intf
|
|
|
|
class Impl(): Intf() {
|
|
|
|
internal override fun getFooBar(): String? {
|
|
return super<Intf>.getFooBar()
|
|
}
|
|
}
|