42 lines
619 B
Plaintext
Vendored
42 lines
619 B
Plaintext
Vendored
class A {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
private val b: <no name provided>
|
|
field = { // BLOCK
|
|
local class <no name provided> : DoubleExpression {
|
|
constructor() /* primary */ {
|
|
super/*DoubleExpression*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
override fun get(): Double {
|
|
return 0.0
|
|
}
|
|
|
|
}
|
|
|
|
<no name provided>()
|
|
}
|
|
private get
|
|
|
|
}
|
|
|
|
class C : DoubleExpression {
|
|
constructor() /* primary */ {
|
|
super/*DoubleExpression*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
override fun get(): Double {
|
|
return 0.0
|
|
}
|
|
|
|
}
|
|
|