1<?php
2
3spl_autoload_register(function($class) {
4    var_dump($class);
5    new Abc;
6});
7opcache_compile_file('preload_const_autoload_2.inc');
8