diff options
Diffstat (limited to 'tests/testfunc.pl')
-rw-r--r-- | tests/testfunc.pl | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/testfunc.pl b/tests/testfunc.pl deleted file mode 100644 index 87864866ff..0000000000 --- a/tests/testfunc.pl +++ /dev/null @@ -1,20 +0,0 @@ -sub foo() -{ - my $i=0; - - if ($i) { - my $a = "zeev"; - } else { - my $b = "andi"; - } -} - - -sub bar() -{ - foo(); -} - -for ($i=0; $i<1000000; $i++) { - bar(); -} |