a372e0063c
These tests failed on the continuous build server, so we disabled them. Since then many other tests have failed and there is no good reason to suspect these tests of being especially flaky, so we may as well re-enable these tests.
20 linhas
308 B
PHP
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');
|