mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
119 B
Kotlin
Vendored
12 lines
119 B
Kotlin
Vendored
abstract class C<A> {
|
|
abstract fun f(a: A)
|
|
}
|
|
|
|
fun f() {
|
|
class R
|
|
|
|
object : C<R>() {
|
|
<caret>
|
|
}
|
|
}
|