mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
14 lines
286 B
Plaintext
Vendored
14 lines
286 B
Plaintext
Vendored
abstract class C<A> {
|
|
abstract fun f(a: A)
|
|
}
|
|
|
|
fun f() {
|
|
class R
|
|
|
|
object : C<R>() {
|
|
override fun f(a: R) {
|
|
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
}
|