503f75d08b
These names don't make sense now that we run both suites the same way.
7 linhas
147 B
PHP
7 linhas
147 B
PHP
<?php
|
|
class AA {
|
|
public static function f1($a1) { print "Pass\n"; }
|
|
public static function f0($a1) { AA::f1($a1); }
|
|
}
|
|
AA::f0("Hello World\n");
|