Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
outOfBlock
/
InSecondaryConstructorBody.kt
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"
)
}
}