503f75d08b
These names don't make sense now that we run both suites the same way.
18 linhas
234 B
PHP
18 linhas
234 B
PHP
<?php
|
|
trait T {
|
|
abstract static function f();
|
|
}
|
|
abstract class Base {
|
|
use T;
|
|
}
|
|
abstract class Foo extends Base {
|
|
abstract static function f();
|
|
}
|
|
class Bar extends Foo {
|
|
static function f() {
|
|
echo "Foo\n";
|
|
}
|
|
}
|
|
|
|
Bar::f();
|