internal class CtorComment { var myA: String /** * This constructor is especially useful */ init { myA = "str" } } /** * This constructor is especially useful */ internal class CtorComment2