Handle this typehints
[hiphop-php.git] / hphp / test / slow / ext_readline / readline_completion_function.php
blob0e23858523dc34786fe2a6f77386569e7f2d2736
1 <?php
3 function foo() { }
5 $data = array(
6 'foo',
7 'strtolower',
8 1,
9 1.1231,
10 function ($str, $start, $end) { return array(); },
13 foreach ($data as $callback) {
14 readline_completion_function($callback);