Files
kotlin-fork/compiler/testData/ir/irText/classes/delegatingConstructorCallsInSecondaryConstructors.txt
T
2016-10-18 09:09:04 +03:00

19 lines
761 B
Plaintext
Vendored

FILE /delegatingConstructorCallsInSecondaryConstructors.kt
CLASS CLASS Base
CONSTRUCTOR public constructor Base()
BLOCK_BODY
DELEGATING_CONSTRUCTOR_CALL 'constructor Any()'
INSTANCE_INITIALIZER_CALL classDescriptor='Base'
CLASS CLASS Test
CONSTRUCTOR public constructor Test()
BLOCK_BODY
DELEGATING_CONSTRUCTOR_CALL 'constructor Base()'
INSTANCE_INITIALIZER_CALL classDescriptor='Test'
CONSTRUCTOR public constructor Test(xx: kotlin.Int)
BLOCK_BODY
DELEGATING_CONSTRUCTOR_CALL 'constructor Base()'
INSTANCE_INITIALIZER_CALL classDescriptor='Test'
CONSTRUCTOR public constructor Test(xx: kotlin.Short)
BLOCK_BODY
DELEGATING_CONSTRUCTOR_CALL 'constructor Test()'