summaryrefslogtreecommitdiffstats
path: root/t/basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-09-20 11:23:56 -0500
committerJesse Luehrs <doy@tozt.net>2012-09-20 11:23:56 -0500
commitebce020f70f422843e1ea8380fd3ec0d8a63faff (patch)
tree5d41b560744f3fa307bff29a2bf2ee4769148fc5 /t/basic.t
parent906bcd2d0c4fc4b4c1bbfd6616fbc3c3ba550612 (diff)
downloadfun-ebce020f70f422843e1ea8380fd3ec0d8a63faff.tar.gz
fun-ebce020f70f422843e1ea8380fd3ec0d8a63faff.zip
Revert "make function arguments readonly"
This reverts commit 35d85cfe78dd870384d3aef07a1e852267061097. Looks like we don't actually want this behavior.
Diffstat (limited to 't/basic.t')
-rw-r--r--t/basic.t5
1 files changed, 0 insertions, 5 deletions
diff --git a/t/basic.t b/t/basic.t
index 2b2104f..080c2cf 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -29,9 +29,4 @@ is(sum(1, 2, 3, 4), 10);
ok(exists $Foo::{foo});
-fun empty ($bar, $baz) { }
-
-is(scalar(empty(1, 2)), undef);
-is_deeply([empty(1, 2)], []);
-
done_testing;