12.0.7.1837 bug with minus + case in package

Example:

CREATE OR REPLACE PACKAGE test AS
PROCEDURE a;
END;

CREATE OR REPLACE PACKAGE BODY test AS
PROCEDURE a
IS
b NUMBER;
BEGIN
b := - CASE 22 WHEN 16 THEN 1 END;
END;
END;

In this case, everything disappears on the "Code Contents" tab.
 
Back
Top