33e6a85a2d
We exclude testData pattern from copyright scope
18 lines
433 B
Kotlin
Vendored
18 lines
433 B
Kotlin
Vendored
open class A(x: () -> Unit)/* DeclarationStructureElement *//* ClassDeclarationStructureElement */
|
|
|
|
class B : A {/* ClassDeclarationStructureElement */
|
|
constructor(i: Int) : super(
|
|
{
|
|
foo(i)
|
|
}
|
|
)/* DeclarationStructureElement */
|
|
|
|
constructor(l: Long) : super(
|
|
{
|
|
foo(l)
|
|
}
|
|
)/* DeclarationStructureElement */
|
|
}
|
|
|
|
fun foo(any: Any) {/* DeclarationStructureElement */}
|