``` open class A(private val b: B) : C (b) { ``` this will raise error: org.antlr.v4.kotlinruntime.misc.ParseCancellationException but without breakline runs success: ``` open class A(private val b: B) : C(b) { ```