96d7203370
Changed test data to match actual behavior of the "override methods" feature.
10 lines
168 B
Plaintext
10 lines
168 B
Plaintext
trait Some {
|
|
fun foo(some : Int?) : Int
|
|
}
|
|
|
|
class SomeOther : Some {
|
|
|
|
override fun foo(some : Int?) : Int {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |