summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug76536.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug76536.phpt')
-rw-r--r--ext/reflection/tests/bug76536.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/tests/bug76536.phpt b/ext/reflection/tests/bug76536.phpt
index 9f3b3fdb31..aa32781e16 100644
--- a/ext/reflection/tests/bug76536.phpt
+++ b/ext/reflection/tests/bug76536.phpt
@@ -2,7 +2,7 @@
Bug #76536 (PHP crashes with core dump when throwing exception in error handler)
--FILE--
<?php
-class SomeConstants {const SOME_CONSTANT = SOME_NONSENSE;}
+class SomeConstants {const SOME_CONSTANT = "foo" % 5; }
function handleError() {throw new ErrorException();}