96d7203370
Changed test data to match actual behavior of the "override methods" feature.
11 lines
154 B
Plaintext
11 lines
154 B
Plaintext
trait G<T> {
|
|
fun foo(t : T) : T
|
|
}
|
|
|
|
class GC() : G<Int> {
|
|
|
|
override fun foo(t : Int) : Int {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|