mirror of
https://github.com/php/php-src.git
synced 2026-04-03 14:12:38 +02:00
19 lines
502 B
PHP
19 lines
502 B
PHP
--TEST--
|
|
Preloading: Loadable class checking (2)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
opcache.preload={PWD}/preload_loadable_classes_2.inc
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows');
|
|
?>
|
|
--FILE--
|
|
Unreachable
|
|
--EXPECTF--
|
|
Fatal error: Undefined constant 'UNDEF' in Unknown on line 0
|
|
|
|
Fatal error: Failed to resolve initializers of class Test during preloading in Unknown on line 0
|