php-src/tests/lang/bug32924.phpt
Ilia Alshanetsky b6f856fbec Test fixes
2005-12-18 14:21:27 +00:00

15 lines
255 B
PHP

--TEST--
Bug #32924 (prepend does not add file to included files)
--INI--
include_path={PWD}
auto_prepend_file=inc.inc
--FILE--
<?php
include_once(dirname(__FILE__).'/inc.inc');
require_once(dirname(__FILE__).'/inc.inc');
?>
END
--EXPECT--
Included!
END