9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
import foo.Intf
|
|
|
|
class Impl(): Intf {
|
|
|
|
public override fun getFooBar() : String? {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|