mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
13 lines
217 B
Kotlin
Vendored
13 lines
217 B
Kotlin
Vendored
// GENERATOR: SINGLE_TEMPLATE
|
|
// GENERATE_SUPER_CALL
|
|
open class X {
|
|
override fun toString() = super.toString()
|
|
}
|
|
|
|
class A(val n: Int, val s: String) : X() {<caret>
|
|
val f: Float = 1.0f
|
|
|
|
fun foo() {
|
|
|
|
}
|
|
} |