xref: /php-src/ext/opcache/tests/jit/gh16358.phpt (revision b9a64c5e)
1--TEST--
2GH-16358 (Segmentation fault (access null pointer) in Zend/zend_operators.c:2495)
3--EXTENSIONS--
4opcache
5--INI--
6opcache.jit=1214
7opcache.jit_buffer_size=64M
8--FILE--
9<?php
10class test_class {
11static protected function test_func4() {
12}
13}
14if (is_callable(array('test_class','test_func4'))) {
15test_class::test_func4();
16}
17?>
18OK
19--EXPECT--
20OK
21