mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
7aacc705d0
Closes GH-5958
14 lines
142 B
PHP
14 lines
142 B
PHP
--TEST--
|
|
__HALT_COMPILER() basic test
|
|
--FILE--
|
|
<?php
|
|
|
|
print "yo!\n";
|
|
|
|
__HALT_COMPILER();
|
|
|
|
none of this should be displayed!
|
|
?>
|
|
--EXPECT--
|
|
yo!
|