summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug74019.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/opcache/tests/bug74019.phpt')
-rw-r--r--ext/opcache/tests/bug74019.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/opcache/tests/bug74019.phpt b/ext/opcache/tests/bug74019.phpt
index 210e223c82..0392963a8b 100644
--- a/ext/opcache/tests/bug74019.phpt
+++ b/ext/opcache/tests/bug74019.phpt
@@ -9,12 +9,12 @@ opcache.enable_cli=1
<?php
class A {
- public function seg() {
- list($a, $b) = A::CONSTS;
- var_dump($a, $b);
- return;
- }
- const CONSTS = [1, 2];
+ public function seg() {
+ list($a, $b) = A::CONSTS;
+ var_dump($a, $b);
+ return;
+ }
+ const CONSTS = [1, 2];
}
$a = new A;