363d1bb20f
This change is mostly for FB internal organizational reasons. Building is not effected beyond the fact that the target now lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
17 linhas
163 B
PHP
17 linhas
163 B
PHP
<?php
|
|
class Foo {
|
|
static function f() {
|
|
echo "Foo\n";
|
|
}
|
|
}
|
|
trait T {
|
|
function f() {
|
|
echo "Bar\n";
|
|
}
|
|
}
|
|
class Bar extends Foo {
|
|
use T;
|
|
}
|
|
|
|
Bar::f();
|