fix refcounting in genConcat
[hiphop-php.git] / hphp / test / slow / variadic-inline.php
blob6082cd1b0d93d1929a9e855c67c93a9f0608a775
1 <?hh
3 <<__ALWAYS_INLINE>>
4 function varargs(int $one, bool $two, ...$three) :mixed{
5 return $three[2];
8 <<__NEVER_INLINE>>
9 function bar() :mixed{
10 echo varargs(2, false, 'alpha', new stdClass, 'gamma', new Exception)."\n";
13 <<__EntryPoint>>
14 function main() :mixed{
15 bar(); bar(); bar(); bar();