1// When it should be demo_pkg.test_func and demo_pkg.test_var 2// Tags are created for: 3// packages 4// demo_pkg 5// variables 6// test_var 7// 8// But no tags for the function. 9// 10// 11create or replace package demo_pkg is 12test_var number; 13 14function test_func return varchar2; 15function more.test_func2 return varchar2; 16function test_func3 return varchar2; 17 18end demo_pkg; 19 20