Skip to content

Commit

Permalink
Added additional test files
Browse files Browse the repository at this point in the history
git-svn-id: https://ctags.svn.sourceforge.net/svnroot/ctags/trunk@801 c5d04d22-be80-434c-894e-aa346cc9e8e8
  • Loading branch information
dfishburn committed Dec 4, 2012
1 parent c3c2a65 commit cd537ec
Show file tree
Hide file tree
Showing 3 changed files with 4,708 additions and 0 deletions.
41 changes: 41 additions & 0 deletions Test/3184782.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
create or replace package body p_test is

procedure do_this_stuff is begin
if true then
for idx in z+1 .. myarr.last loop
if myarr.exists(idx) then
null;
end if;
end loop;

elsif true then
for idx in myarr.first .. myarr.last loop
if myarr.exists(idx) then
null;
end if;
end loop;
end if;
end do_this_stuff;

procedure process_this (
p_flag in boolean
) is
begin
null;
end process_this;

procedure myfn1 (
p_str1 in varchar2,
p_str2 in varchar2
) is begin
process_this(false);
end myfn1;

procedure myfn2 (
p_str1 in varchar2,
p_str2 in varchar2
) is begin
process_this(true);
end myfn2;

end p_test;
Loading

0 comments on commit cd537ec

Please sign in to comment.