Execute the following script using F5:
CREATE OR REPLACE TYPE test_ot AS OBJECT ( val NUMBER(1) );
/
DROP TYPE test_ot;
This is the output:
Type created.
Materialized View dropped.
SQL*Plus output seems to make more sense:
Type created.
Type dropped.