1--TEST-- 2Phar::mapPhar no __HALT_COMPILER(); 3--EXTENSIONS-- 4phar 5--FILE-- 6<?php 7try { 8Phar::mapPhar('hio'); 9} catch (Exception $e) { 10echo $e->getMessage(); 11} 12?> 13--EXPECT-- 14__HALT_COMPILER(); must be declared in a phar 15