Files
kotlin-fork/compiler/testData/ir/sourceRanges/declarations/secondaryConstructors.kt
T
Dmitry Petrov 7dd906db44 KT-28324 More exact startOffset for function/constructor declarations
Function/constructor declaration start offset is the start offset of the
corresponding declaration token, if available.
2018-11-22 10:09:31 +03:00

14 lines
221 B
Kotlin
Vendored

class C {
constructor() : super()
private
constructor(x: Int): super()
/**
* comment
*/
constructor(x: String) : super()
@Suppress("UNUSED_VARIABLE")
constructor(x: Any): super()
}