mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
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()
|
|
}
|
|
}
|