class A(val prop: Int = 42, c: String) { constructor(str: String) : this(str.myToInt(), str) fun foo() = "str" } fun String.myToInt(): Int = 42