This code is working with 1.1.2 but not in 1.1.3. ...
# javascript
g
This code is working with 1.1.2 but not in 1.1.3. It seems that a js function is missing. Is it a known bug? https://try.kotlinlang.org/#/UserProjects/iehc94g735ikouneqehn97mndv/8tl2elh05gkkg0fqvrpq67nrsq
b
Thank you, we’ll investigate it and let you know
g
👍
I just removed a lot of code to help you.
k
@gaetan did you try 1.1.4?
g
Seems ok with 1.1.4-eap-54
b
g
Yes definitively.
k
There should be an obvious workaround
g
Obvious… for you! 😉
Ok, I read the description.
k
Copy code
interface I {
    fun foo() {
        println("foo")
    }
}

interface J : I

class A : J, I
Removing redundant
I
from A's superclasses fixes the issue
g
Yes it’s working. Thanks a lot