summaryrefslogtreecommitdiff
path: root/tests/lang/bug18872.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug18872.phpt')
-rw-r--r--tests/lang/bug18872.phpt24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/lang/bug18872.phpt b/tests/lang/bug18872.phpt
index 2e3dc22c58..5e5333879d 100644
--- a/tests/lang/bug18872.phpt
+++ b/tests/lang/bug18872.phpt
@@ -1,18 +1,18 @@
--TEST--
Bug #18872 (class constant used as default parameter)
--FILE--
-<?php
-class FooBar {
- const BIFF = 3;
-}
-
-function foo($biff = FooBar::BIFF) {
- echo $biff . "\n";
-}
-
-foo();
-foo();
-?>
+<?php
+class FooBar {
+ const BIFF = 3;
+}
+
+function foo($biff = FooBar::BIFF) {
+ echo $biff . "\n";
+}
+
+foo();
+foo();
+?>
--EXPECT--
3
3