Arquivos
hhvm/hphp/test/quick/interface7.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

17 linhas
212 B
PHP

<?php
print "Test begin\n";
interface I {
public function foo($x, $y);
}
class C implements I {
public function foo($x) {
echo 'Hello ' . $x . "\n";
}
}
$o = new C;
$o->foo("5");
print "Test end\n";