https://kotlinlang.org logo
Title
e

eugene.kudelevsky

07/09/2018, 1:22 PM
Ok, we’ve tried to create a new Kotlin project from scratch and just call intArrayOf() in main() function on that machine, and we’ve got the same error 😞
a

Andreas Sinz

07/09/2018, 1:50 PM
try to reinstall the kotlin intellij plugin
i

ilya.gorbunov

07/09/2018, 2:16 PM
Could you find which jar file from compile classpath on that machine сontains
kotlin/KotlinPackage.class
?
e

eugene.kudelevsky

07/09/2018, 3:51 PM
@ilya.gorbunov Ok, I’ll try. But why do you think that there is this class in some JAR?
i

ilya.gorbunov

07/09/2018, 3:58 PM
Otherwise there's no reason that compiler could generate a reference to it.
e

eugene.kudelevsky

07/10/2018, 9:37 AM
Ok, we’ve performed
find . -name "*.jar" | xargs grep "KotlinPackage.class"
command for IDEA application directory, project root directory and ~/.gradle/caches and have got empty results. I don’t see any JARs outside of that directories in the classpath according to build.log I sent above…
Is there any way to enable “super-verbose” logging of kotlin compiler or something like this?
@ilya.gorbunov I can create a youtrack issue if needed or we can talk through private messaging.
i

ilya.gorbunov

07/10/2018, 11:47 AM
At this point it's better to create an issue, because I'm out of ideas
e

eugene.kudelevsky

07/11/2018, 9:50 AM