1--TEST-- 2Bug #78937.6 (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"); 17bar(); 18var_dump(new Foo); 19?> 20--EXPECTF-- 21Warning: Can't preload unlinked class Bar@anonymous: Unknown parent Bar in %spreload_bug78937.inc on line 3 22 23Fatal error: Uncaught Error: Class "Bar" not found in %spreload_bug78937.inc:6 24Stack trace: 25#0 %sbug78937_6.php(3): bar() 26#1 {main} 27 thrown in %spreload_bug78937.inc on line 6 28