xref: /PHP-5.5/Zend/tests/bug48930.phpt (revision 9b07568c)
1--TEST--
2Bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP>=5.3)
3--FILE--
4#!php
5<?php
6
7/*
8 * Test
9 */
10printf("__COMPILER_HALT_OFFSET__ is %d\n",__COMPILER_HALT_OFFSET__);
11
12__halt_compiler();
13
14?>
15--EXPECT--
16__COMPILER_HALT_OFFSET__ is 116
17