mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
import foo.Intf
|
|
|
|
class Impl(): Intf {
|
|
|
|
public override fun getFooBar() : String? {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|