0df5d5158d
#KT-38297 Fixed
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>
|
|
} |