Unable to compile with Intellij

后端 未结 7 758
小鲜肉
小鲜肉 2021-01-31 18:40

I\'m giving JetBrains IntelliJ IDEA 12.0.4 a spin and have run into an issue when compiling programs. When I run a program I get the following error:

Internal err         


        
7条回答
  •  攒了一身酷
    2021-01-31 19:15

    This Error may encounter in IntellijIdea if you try to use some language-specific keywords as your class name or object name. In my case once I got a similar kind of error on using the reserved keywords.

    Some options to fix the issue:

    • Look for the language-specific keyword usage as a class/object name in your codebase.
    • Try to invalidate the cache and restart from the File Menu
    • Reimport the project from the source by recreating the .idea directory.

提交回复
热议问题