9 lines
177 B
Plaintext
9 lines
177 B
Plaintext
trait G<T> {
|
|
fun foo(t : T) : T
|
|
}
|
|
|
|
class GC<T>() : G<T> {
|
|
override fun foo(t: T): T {
|
|
<selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|
|
} |