help
i have put two files in the following directory:
1. d:\temp\packagea\a1.java
2. d:\temp\packageb\a2.java
packagea and packageb are two packages,now i want a2 to use the classes in the a1,but the system always tell me the error:can't analyse symbols
for example:
package packagea;
public class a1{...}
package packageb;
public class a2{
packagea.a1 a=new packagea.a1();
}
i hope someone can tell me what's wrong with my program?
thank you!

