44ae3c3dac
We've got some tests that are giving us control chars in their output on contbuild machines. We haven't been able to repo locally yet. Disabling them for now until the test harness can be improved to avoid crashing in these cases. Note: this diff will likely go thru multiple iterations as more are uncovered.
20 linhas
308 B
Plaintext
20 linhas
308 B
Plaintext
<?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');
|