Add secondary ctors to incremental analysis

#KT-35121 Fixed
This commit is contained in:
Vladimir Dolzhenko
2019-11-27 14:00:05 +01:00
parent f709377735
commit 95129939d4
7 changed files with 89 additions and 1 deletions
@@ -0,0 +1,16 @@
// TYPE: 'n'
// OUT_OF_CODE_BLOCK: FALSE
fun println(s: String) {
}
class InSecondaryConstructor {
init {
println("Init block")
}
constructor(i: Int) {
printl<caret>("Constructor")
}
}