95129939d4
#KT-35121 Fixed
16 lines
220 B
Kotlin
Vendored
16 lines
220 B
Kotlin
Vendored
// TYPE: 'n'
|
|
// OUT_OF_CODE_BLOCK: FALSE
|
|
|
|
fun println(s: String) {
|
|
|
|
}
|
|
|
|
class InSecondaryConstructor {
|
|
init {
|
|
println("Init block")
|
|
}
|
|
|
|
constructor(i: Int) {
|
|
printl<caret>("Constructor")
|
|
}
|
|
} |