xref: /PHP-5.5/tests/lang/bug32924.phpt (revision b6f856fb)
1--TEST--
2Bug #32924 (prepend does not add file to included files)
3--INI--
4include_path={PWD}
5auto_prepend_file=inc.inc
6--FILE--
7<?php
8include_once(dirname(__FILE__).'/inc.inc');
9require_once(dirname(__FILE__).'/inc.inc');
10?>
11END
12--EXPECT--
13Included!
14END
15