here's a simplified version of the stackoverflow b...
# announcements
k
here's a simplified version of the stackoverflow bug:
Copy code
fun main(args: Array<String>) {
    println(Foo2().bar("hello ")) //StackOverflowError here
}


interface IFoo {
    fun bar(a: String, b: String = "world"): String
}

open class Foo : IFoo {
    override fun bar(a: String, b: String) = a + b
}

class Foo2 : Foo() {
    override fun bar(a: String, b: String) = super.bar(a)
}