xref: /php-src/Zend/tests/halt01.phpt (revision 7aacc705)
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?>
12--EXPECT--
13yo!
14