David
David

Reputation: 31

Problem on error highlight using IntelliJ 10 CE with the scala plug-in

I'm having some strange behavior in the IntelliJ editor when editing scala sources. It continuously report problem of kind "cannot resolve symbol" on various Predef functions like "require" and "->".

It seems to be only an editor problem because I am able to run scala code in Intellij and compile the sources using maven.

Am I the only one having this kind of problem ?

I'm using the Intellij version 10.0.3 CE and scala plugin version 0.4.735.

Thanks.

Upvotes: 2

Views: 820

Answers (2)

Pavel Fatin
Pavel Fatin

Reputation: 374

Please, check the project configuration guide. It's likely that you forgot to add Scala standard library to the module dependencies.

Upvotes: 0

soc
soc

Reputation: 28451

I would recommend using the latest IntelliJ IDEA EAP together with the latest Scala Plugin. This is known to solve a lot of problems.

Upvotes: 2

Related Questions