My coding experience has only gone back a few years, so this question should be easy enough to answer.
I have written two interfaces: Class and Game. Interface CLASS is supposed to extend interface GAME.
Here are the two interface sources:
package Impl;
public interface Game
{
//METHODS AND VARS
}
package Impl;
public interface Class extends Game
{
//METHODS AND VARS
}
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
^
My Game class is compiled and the class file is in the same directory as both java files. I have not been able to find a solution. Does anyone have any ideas?