Slash in comment first line fails switching from SQL- to Programm Window

Benjamin L

Member²
When i'm using a Slash in the first line of a comment, switching from SQL- to Programm-Window will generate an additional tab.

create or replace package comment_test is

/*
/
*/

PROCEDURE x;
end comment_test;
/
create or replace package body comment_test IS

PROCEDURE x IS

BEGIN
NULL;
END;

end comment_test;
/

The slash in line 4 causes the additional tab. If there is text or blank before the slash or text after it, it works fine.

This bug also exists in Version 10
 
Back
Top