summaryrefslogtreecommitdiff
path: root/tests/lang/bug21849.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug21849.phpt')
-rw-r--r--tests/lang/bug21849.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/bug21849.phpt b/tests/lang/bug21849.phpt
index 2ce99769d9..def754a3a6 100644
--- a/tests/lang/bug21849.phpt
+++ b/tests/lang/bug21849.phpt
@@ -4,7 +4,7 @@ Bug #21849 (self::constant doesn't work as method's default parameter)
<?php
class foo {
const bar = "fubar\n";
-
+
function __construct($arg = self::bar) {
echo $arg;
}