1--TEST-- 2Bug #78937.3 (Preloading unlinkable anonymous class can segfault) 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.optimization_level=-1 7opcache.preload={PWD}/preload_bug78937.inc 8--EXTENSIONS-- 9opcache 10--SKIPIF-- 11<?php 12if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows'); 13?> 14--FILE-- 15<?php 16include(__DIR__ . "/preload_bug78937.inc"); 17var_dump(foo()); 18?> 19--EXPECTF-- 20Warning: Can't preload unlinked class Bar@anonymous: Unknown parent Bar in %spreload_bug78937.inc on line 3 21 22Fatal error: Uncaught Error: Class "Bar" not found in %spreload_bug78937.inc:3 23Stack trace: 24#0 %sbug78937_3.php(3): foo() 25#1 {main} 26 thrown in %spreload_bug78937.inc on line 3 27