- I created a package in the database, and then saved the specification and body as files on disk.
- I dropped a package from the database
- I opened spec and body from local files created at 1
- run debug
- compile for debug
- ERROR
package pkg_test.pks
create or replace package pkg_test is
procedure main;
end;
package body pkg_test.pkb
create or replace package body pkg_test is
procedure main is
begin
for i in 1..10 loop
dbms_output.put_line(i);
end loop;
end;
end;

I'm not sure if it is a bug or I did sth wrong but I definitely need help here :)