16 lines
423 B
PHP
16 lines
423 B
PHP
--TEST--
|
|
No autoloading during constant resolution
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
opcache.preload={PWD}/preload_const_autoload.inc
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows');
|
|
?>
|
|
--FILE--
|
|
--EXPECTF--
|
|
Warning: Can't preload class Test with unresolved initializer for constant C in %s on line %d
|