summaryrefslogtreecommitdiff
path: root/Zend/tests/bug30407.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug30407.phpt')
-rw-r--r--Zend/tests/bug30407.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/Zend/tests/bug30407.phpt b/Zend/tests/bug30407.phpt
deleted file mode 100644
index 6dcc6b3481..0000000000
--- a/Zend/tests/bug30407.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-Bug #30407 (Strange behaviour of default arguments)
---FILE--
-<?php
-
-function haricow($a = 'one') {
- var_dump($a);
- $a = 'two';
-}
-
-haricow();
-haricow();
-?>
-===DONE===
---EXPECT--
-string(3) "one"
-string(3) "one"
-===DONE===