1.all the files are in the folder" I:\my codes\food\"
2.soure files:
1)B.java
package food;
public abstract class B extends Abc{
abstract void exit();
}
2)Abc.java
package food;
public abstract class Abc{
abstract void doit();
abstract void
test();
}
3.before compile class B,class Abc is compiled successfully。then when trying to compile class B ,error raise

:
b.java:3: cannot find symbol
symbol: class Abc
public abstract class B extends Abc{
^
1 error