1--TEST-- 2__HALT_COMPILER() basic test 3--FILE-- 4<?php 5 6print "yo!\n"; 7 8__HALT_COMPILER(); 9 10none of this should be displayed! 11--EXPECT-- 12yo! 13