Arquivos
hhvm/hphp/test/ext/debugger_tests/break_t3.php
T
Paul Tarjan f5569e4755 clean up tests dir
I think this dir shouldn't have anything non-necessary in the root.
2013-06-06 16:31:09 -07:00

21 linhas
328 B
PHP

<?php
namespace TestNs;
// Warning: line numbers are sensitive, do not change
function foo($x) {
$y = $x.'_suffix';
\error_log($y);
}
class cls {
public function pubObj($x) {
\error_log("pubObj:".$x);
}
public static function pubCls($x) {
\error_log("pubCls:".$x);
}
}
\error_log('break_t3.php loaded');