I get syntax error
declare
type t1 is table of number;
type t2 is record(id number, coll t1);
type t3 is table of t2;
v3 t3;
begin
v3 := t3();
v3.extend();
v3(1).coll := t1();
v3(1).coll.extend();--syntax error here
end;
/
I have some large packages and the error causes that outline is not working. It makes difficult for me to navigate throught code.