I have created a project and Hello.java file without package name
public class Hello {
   public String sayHello(){
      return "Say Hello";
   }
}
I exported this project into hello.jar.
Now I have created another project and Main.java to call sayHello() method. I added hello.jar in classpath but the below code showing me an error 'Hello cannot be resolved to a type'
 public class Main {
   public static void main(String[] args){
     Hello h=new Hello(); // Error
  }
}
 
     
    