Arquivos
hhvm/hphp/test/quick/boxed_static_string.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

18 linhas
245 B
PHP

<?php
function breaker(&$x) {
$x = (string)mt_rand();
}
function foo() {
$x = "";
breaker($x);
// Bug #2240782: HHIR needs to think of $x as a BoxedStr, not a
// BoxedStaticStr here.
echo "Num: ";
echo $x;
echo "\n";
}
foo();