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