Arquivos
hhvm/hphp/test/quick/debugger/break2.php
T
Herman Venter bca91c8ef3 Really turn off tutorial output this time and re-enable tests that failed because of tutorial mode.
It turns out that Tutorial=0 means "auto" and -1 means "off". With auto tutorials, the hphpd.hdf file got updated and test behavior got flaky. Even worse, the non ASCII characters in the tutorial output broke the test runner in a way that made it look like tests passed when you put up a differential, only to fail in contbuild.
2013-06-28 11:36:10 -07:00

20 linhas
308 B
PHP

<?php
// Warning: line numbers are sensitive, do not change
function foo2($x) {
$y = $x.'_suffix';
error_log($y);
}
class cls2 {
public function pubObj($x) {
error_log("pubObj2:".$x);
}
public static function pubCls($x) {
error_log("pubCls2:".$x);
}
}
error_log('break2.php loaded');