hello everyone, just upgraded to 1.1.4, and i’m se...
# announcements
u
hello everyone, just upgraded to 1.1.4, and i’m seeing
ClassFormatError: Illegal field modifiers in class (different interfaces): 0x1018
all over… anyone else seeing this?
y
are you using the allopen plugin?
u
nope
at least not that i’m aware of 😄
i’m … well, slightly puzzled by the issue, already cleaned all the caches; which was useless, as it also doesn’t work with mvn on the cli
y
can you reproduce this in a small test project?
u
sure, i can try
do you have any pointers what could be the underlying issue?
y
no, not really
u
okay, i tracked it down to using lazyOf() in default methods for interfaces
something like
Copy code
interface MyInterface {
    fun something() {
        val thing by lazyOf(1)
    }
}
triggers the problem
y
thanks!
u
np, thanks for making kotlin awesome! 👍