blob: 5d23eb672675ba95a97065fd95406ef2a6b59f21 [file]
// TYPE: 'n'
// OUT_OF_CODE_BLOCK: FALSE
fun println(s: String) {
}
class InSecondaryConstructor {
init {
println("Init block")
}
constructor(i: Int) {
printl<caret>("Constructor")
}
}