summaryrefslogtreecommitdiff
path: root/Zend/tests
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-11-01 10:39:47 +0300
committerDmitry Stogov <dmitry@zend.com>2017-11-01 10:39:47 +0300
commit5baf657db3c58201c2d861f9809c40124c57d666 (patch)
tree4cae24e0c78f7580e707bcab3d19729eca3b318c /Zend/tests
parente0924c52fc7c69b483b5416c609ce7f008584845 (diff)
downloadphp-git-5baf657db3c58201c2d861f9809c40124c57d666.tar.gz
Revert "Fixed string interning during constants substitution"
This reverts commit e0924c52fc7c69b483b5416c609ce7f008584845.
Diffstat (limited to 'Zend/tests')
-rw-r--r--Zend/tests/class_constants_005.phpt12
1 files changed, 0 insertions, 12 deletions
diff --git a/Zend/tests/class_constants_005.phpt b/Zend/tests/class_constants_005.phpt
deleted file mode 100644
index de53c2c0ca..0000000000
--- a/Zend/tests/class_constants_005.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-String interning during constants substitution
---INI--
-opcache.enable_cli=0
---FILE--
-<?php
-define ("A", "." . ord(26) . ".");
-eval("class A {const a = A;}");
-var_dump(A::a);
-?>
---EXPECT--
-string(4) ".50."