Launch Scala 2.9.0 on IntellijIdea 10

When I launched the Scala hello world application, for example

package pack object App { def main(args: Array[String]) { println("Hello, world!") } 

in Idea 10.0.3, I get compilation errors

'Application' for D: \ program \ java2 \ scala3 \ from \ Production \ scala3 \ package \ App.class (File name, directory name, or incorrect volume label syntax)

'Application' for D: \ program \ java2 \ scala3 \ from \ Production \ scala3 \ package \ App $ .class (File name, directory name, or incorrect volume label syntax)

How can I handle this?

+6
source share
1 answer

This is an Intellij error. See Bug SCL-3185 in jetbrains tracking for pointers to free candidate code correcting it.

+9
source

Source: https://habr.com/ru/post/888115/


All Articles