My coding took only a few years, so this question should be easy enough to answer.
I wrote two interfaces: Class and Game. The CLASS interface should extend the GAME interface.
Here are two sources of the interface:
package Impl; public interface Game {
Now when I try to compile the second interface, I get the following error
class.java:4: cannot find symbol symbol: class Game public interface Class extends Game ^
The My Game class is compiled, and the class file is in the same directory as both java files. I could not find a solution. Does anyone have any idea?
java compiler-errors
Jay
source share