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