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.
14 linhas
189 B
PHP
14 linhas
189 B
PHP
<?php
|
|
class Foo {
|
|
final public function f() {
|
|
return 'Foo';
|
|
}
|
|
}
|
|
class Bar extends Foo {
|
|
final public function f() {
|
|
return 'Bar';
|
|
}
|
|
}
|
|
$bar = new Bar();
|
|
echo $bar->f()."\n";
|