summaryrefslogtreecommitdiff
path: root/tests/lang/bug24926.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug24926.phpt')
-rw-r--r--tests/lang/bug24926.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lang/bug24926.phpt b/tests/lang/bug24926.phpt
index 8f853dba47..f8771a20a0 100644
--- a/tests/lang/bug24926.phpt
+++ b/tests/lang/bug24926.phpt
@@ -8,15 +8,15 @@ error_reporting (E_ALL);
class foo {
public $functions = array();
-
+
function __construct()
{
$function = create_function('', 'return "FOO\n";');
print($function());
-
+
$this->functions['test'] = $function;
print($this->functions['test']()); // werkt al niet meer
-
+
}
}