03641ffbee
#KT-8467 In Progress
9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
interface A {
|
|
fun foo(): Int
|
|
}
|
|
|
|
class B : A {
|
|
<spot>override fun foo(): Int {
|
|
throw UnsupportedOperationException()
|
|
}</spot>
|
|
} |