there is a class called "Agent.class" that I wanna use inside of a java source file, and the .class file is in the same location as the .java file. the location is ./my/test/
when I tried to import this class by typing "import my.test.", Intellij-idea doesn't show autocomplete for the Agent.class but just the .java file.
inside the java file, a line of code Agent ag = new Agent(); failed because the compiler can't resolve the object "Agent".
What am I wrong here with the Intellij settings?