What does “Forward reference extends over definition of value” mean in Scala?

前端 未结 7 2207
一个人的身影
一个人的身影 2020-12-10 00:20

I keep getting

Forward reference extends over definition of value a

error while trying to compile my application (inside SBT).

7条回答
  •  被撕碎了的回忆
    2020-12-10 00:51

    You Should check your imports. It must be importing variable name from the import, The variable name must be used in some library which is imported to your code. Remove the import.

提交回复
热议问题